/* =========================
   Variables
========================= */
:root {
  --color-bg: #f3f3f3;
  --color-surface: #f6f6f6;
  --color-primary: #492a20;
  --color-primary-2: #5b372a;
  --color-border: #9b7b6c;
  --color-text-soft: #6d564c;
  --color-footer-bg: rgb(240 229 220);
  --color-footer-title: rgb(89 60 51);
  --color-footer-line: rgb(206 192 183);
  --color-white: #ffffff;

  --shadow-card: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
                 rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;

  --space-slider-y: 10px;
  --faq-max-width: 760px;
  --footer-logo-width: 250px;
}

/* =========================
   Global
========================= */
body {
  background-color: var(--color-bg) !important;
}

/* =========================
   Product cards
========================= */
.s-product-card-entry {
  box-shadow: var(--shadow-card);
 transition: all 0.4s ease-in-out;
}
.s-product-card-entry:hover{
     border: 1px solid var( --color-primary);
}
.s-products-slider-card {
  padding-block: var(--space-slider-y);

}

.s-contacts-icon,
.header-btn__icon {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

.s-product-card-vertical .s-product-card-wishlist-btn button {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

button.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

/* =========================
   Hero video
========================= */
.custom-video-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  background: var(--color-surface);
}

.custom-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .custom-video-hero,
  .custom-video-hero__overlay {
    min-height: 55vh;
  }
.custom-video-hero__video {
 
  object-fit: contain;
 
}

  .custom-video-hero__overlay {
    padding: 30px 24px;
  }

  .custom-video-hero__title {
    font-size: 38px;
  }
}

@media (max-width: 425px) {
  .custom-video-hero {
    min-height: 24vh;
  }
}

/* =========================
   Category section
========================= */


.grid.md\:grid-cols-3.two-row.grid-flow-row.gap-3.sm\:gap-8 a {
    height: 100%;
    background-color: transparent;
    padding:0 !important;
}
section.s-block.s-block--banners.container .md\:grid-cols-3 {
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 0px;
}


@media (min-width: 768px) {
  .s-block--banners .grid.md\:grid-cols-3.one-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0px !important;
  }

  .s-block--banners .grid.md\:grid-cols-3.one-row > a.banner-entry.square-photos {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding: 0 !important;
    background: transparent !important;
    height: auto !important;
  }
.grid.one-row.md\:grid-cols-3.grid-flow-row.gap-3.sm\:gap-8 {
    margin-top: -70px !important;
}
}



/* ===== mobile only ===== */
@media (max-width: 767px) {
.grid.one-row.md\:grid-cols-3.grid-flow-row.gap-3.sm\:gap-8 {
   margin-top: -80px;
    display: flex;
}
  .s-block--banners .grid.md\:grid-cols-3.one-row > a.banner-entry.square-photos {
  
    background: transparent !important;
   
  }
}

/* =========================
   Banners
========================= */
.s-block--fixed-banner .container {
  max-width: 100%;
}

/* =========================
   FAQ
========================= */
.custom-faq-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--color-surface);
}

.custom-faq-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.custom-faq-title-wrap {
  width: 100%;
  margin-bottom: 24px;
}

.custom-faq-title {
  display: block;
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary-2);
  text-align: right;
  margin: 0;
  line-height: 1.2;
}

.custom-faq-list {
  width: 100%;
  max-width: var(--faq-max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-faq-item {
  width: 100%;
  border: 1px solid var(--color-border);
  background: transparent;
  box-sizing: border-box;
}

.custom-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 20px;
  text-align: right;
  font-size: 24px;
  color: var(--color-primary-2);
}

.custom-faq-item summary::-webkit-details-marker {
  display: none;
}

.custom-faq-item summary::before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  font-family: Arial, sans-serif;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-2);
  font-size: 24px;
  line-height: 1;
}

.custom-faq-item[open] summary::before {
  content: "−";
}

.custom-faq-answer {
  padding: 0 20px 18px;
  text-align: right;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

@media (max-width: 768px) {
  .custom-faq-container {
    max-width: 100%;
  }

  .custom-faq-title {
    font-size: 20px;
 
  }

  .custom-faq-title-wrap {
    margin-bottom: 16px;
  }

  .custom-faq-list {
    max-width: 100%;
  }

  .custom-faq-item summary {
    font-size: 16px;
    padding: 16px;
  }

  .custom-faq-answer {
    font-size: 15px;
  }
}

/* =========================
   Header
========================= */
.top-navbar {
  background-color: var(--color-white);
}

/* =========================
   Footer
========================= */
footer.store-footer,
.store-footer__inner {
  background-color: var(--color-footer-bg) !important;
}

.store-footer__inner h3 {
  color: var(--color-footer-title);
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-footer-line);
  padding-bottom: 20px;
  line-height: 60px;
}

.custom-footer-logo {
  display: block;
  width: var(--footer-logo-width);
  max-width: var(--footer-logo-width);
  height: auto;
}

@media (max-width: 425px) {
  .store-footer__inner h3 {
    font-size: 20px;
  }

  .custom-footer-logo {
    width: 180px;
    max-width: 180px;
  }
}


/* adding style to top navbar */
.top-navbar {
    background-color: var( --color-primary) !important;
}

.s-search-modal {
    background-color: white !important;
    border-radius: 16px !important;
    margin-block: 2px !important;
}




i.sicon-menu {
    color:  var( --color-primary) !important;
}


ul.main-menu.mm-spn--open li a span {
  position: relative;
 }

ul.main-menu.mm-spn--open li a span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var( --color-primary) !important;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

ul.main-menu.mm-spn--open li a:hover span::after {
  transform: scaleX(1);
}