/* Add custom CSS styles below */ 
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
* {
    font-family: "Cairo", sans-serif;
}

/* root */
:root {
    --color-primary: #5D2F22;
}

/* cats */
.al-categories .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.al-categories .grid > a {
    max-width: 80% !important;
    align-self: center !important;
}
@media (max-width: 992px) {
    .al-categories .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .al-categories .grid > a {
        max-width: 100% !important;
    }
}

/* Testimonials */
.al-testimonial .mt-6 span {
    display: none;
}

/* Footer */
.store-footer,
.footer-is-light .store-footer .store-footer__inner {
    background-color: #F4EDEC !important;
}
@media (max-width: 992px) {
  .store-footer * {
    text-align: center;
    margin-inline: auto;
  }
  .store-footer .contact-us {
    grid-column: 1/3;
  }
}