/* Add custom CSS styles below */
:root {
  --color-primary: #a66634;
}
body {
  background: white;
}
.header-btn__icon {
  color: var(--color-primary);
}

.navbar-brand img {
  max-height: 1rem;
}
.main-nav-container.fixed-pinned .navbar-brand img{
    max-height: 20px;
}

/* ---- Code to control number of products per screen ---- */

/* Default for mobile screens (2 products) */
.s-products-list-horizontal-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* For tablets (3 products) */
@media (min-width: 768px) {
  .s-products-list-horizontal-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* For large screens and desktops (4 products) */
@media (min-width: 1024px) {
  .s-products-list-horizontal-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.s-product-card-entry {
  flex-direction: column;
}
.s-product-card-horizontal .s-product-card-image {
  width: 100%;
}
.s-button-primary {
  color: white;
}
.s-button-primary:hover {
  background-color: var(--color-primary);
}
.banner--fixed img {
  background: transparent;
  max-height: 800px;
}
.s-product-card-image {
  background: transparent;
}
#mainnav {
  heighr: auto;
}
/*First Banner */
section:first-of-type {
  margin: 0;
}
salla-slider.photos-slider .swiper-slide {
  margin: 0;
  width: 100%;
  padding: 0;
  border-radius: 0 !important;
}
.s-block.s-block--photos-slider img {
  border-radius: 0 !important;
}
salla-slider.photos-slider .swiper:where([dir="rtl"], [dir="rtl"] *) {
  padding: 0;
}
.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled {
  visibility: hidden;
}
.slide--cat-entry {
  background: transparent !important;
  border: none;
}
.s-slider-block__title {
  display: none;
}
.s-slider-block__title h2 {
  font-size: clamp(28px, 2vw, 20px);
}
.s-slider-block__title-right:where([dir="rtl"], [dir="rtl"] *) {
  padding: 0px !important;
}
@media (min-width: 1024px) {
  salla-slider .slide--one-sixth {
    width: 20% !important;
  }
}

.s-block--categories img {
  height: 9rem !important;
  width: 9rem !important;
}

.slide--cat-entry {
  height: 15rem !important;
}

.slide--cat-entry h2 {
  font-size: 24px !important;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .s-block--categories img {
    height: 7rem !important;
    width: 7rem !important;
  }

  .slide--cat-entry {
    height: 12rem !important;
  }

  .slide--cat-entry h2 {
    font-size: 18px !important;
    line-height: 1.5;
  }
}
/*therd component */
.s-block__title .right-side:where([dir="rtl"], [dir="rtl"] *) {
  display: none;
}

.s-product-card-entry {
  border: 1px solid var(--color-primary);
}
/* site featuers */
.s-block--features__item .feature-icon {
  background: transparent;
  height: 8rem;
  width: 8rem;
}
.s-block--features__item .feature-icon i {
  font-size: 5rem;
  color: var(--color-primary);
}
.s-block--features__item h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}
.s-block--features__item p {
  font-size: 21px;
}
/*footer*/
.store-footer,
.store-footer__inner {
  background-color: #a66634 !important;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  color: white;
}
.copyright-text p {
  color: white;
}
@media (max-width: 1024px) {
  .store-footer {
    text-align: center;
  }
  .s-contacts-list {
    align-items: center;
  }
  .s-social-list,
  .store-footer a {
    justify-content: center;
  }
  .s-block--features__item .feature-icon {
    height: 5rem;
    width: 5rem;
  }
  .s-block--features__item .feature-icon i {
    font-size: 4rem;
  }
}
.s-button-primary-outline {
  color: white;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.s-button-primary-outline:hover {
  color: white;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
/* Apply the 1px margin for desktop */
section:first-of-type {
    margin-top: 1px;
}

/* Remove the margin on MOBILE screens */
@media (max-width: 991px) {
    section:first-of-type {
        margin-top: 0;
    }
}