 #shopify-section-{{ section.id }} .main-mq-sect {
    margin: 0;
    background: #f9f9f9;
    padding: 10px 0;
  }
  #shopify-section-{{ section.id }} * {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
  }
  :root {
    --mq-yellow: #FCA600;
  }
  #shopify-section-{{ section.id }} .main-mq {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 60px 10px;
    transition: all 0.3s;
    background: white;
  }
  #shopify-section-{{ section.id }} .faq-inner-mq {
    width: 95%;
    margin: 0 auto !important;
    border-top: 1px solid #ddd;
  }
  #shopify-section-{{ section.id }} .main-mq h1 {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 15px;
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  #shopify-section-{{ section.id }} .faq-mq {
    display: flex;
    flex-direction: column;
    background: transparent;
    margin: 5px 0;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
  }
  /* question row */
  #shopify-section-{{ section.id }} .quest-mq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px; /* full-width gutters */
    transition: background 0.3s;
  }
  /* left group: icon + text */
  #shopify-section-{{ section.id }} .quest-mq__left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  #shopify-section-{{ section.id }} .quest-mq__left svg {
    flex-shrink: 0;
  }
  #shopify-section-{{ section.id }} .quest-mq h3 {
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    flex-shrink: 1;
    min-width: 0;
  }
  #shopify-section-{{ section.id }} .answer-mq {
    color: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
  }
  #shopify-section-{{ section.id }} .answer-mq p {
    padding: 5px 0 15px;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  #shopify-section-{{ section.id }} .icon-mq {
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 22px;
    transition: transform 0.3s, background 0.3s;
  }
  #shopify-section-{{ section.id }} .icon-mq svg {
    fill: #000;
  }
  /* open state */
  #shopify-section-{{ section.id }} .faq-mq.active-mq .answer-mq {
    max-height: 500px;
  }
  #shopify-section-{{ section.id }} .faq-mq.active-mq .icon-mq {
    transform: rotate(180deg);
    background: var(--mq-yellow);
  }

  @media (max-width: 768px) {
    #shopify-section-{{ section.id }} .bg-main-mq {
      padding: 32px 20px;
    }
    #shopify-section-{{ section.id }} .main-mq {
      padding: 0;
    }
    #shopify-section-{{ section.id }} .main-mq h1 {
      margin: 15px 0 16px;
      font-size: 24px;
    }
    #shopify-section-{{ section.id }} .quest-mq h3 {
      font-size: 14px;
    }
    #shopify-section-{{ section.id }} .answer-mq p {
      font-size: 12px;
      line-height: 20px;
    }
  }

   #section-{{ section.id }}.collection-slider {
    padding: 24px 16px;
    position: relative;
    overflow: hidden;
  }

  #section-{{ section.id }} .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  #section-{{ section.id }} .slider-titles {
    display: flex;
    flex-direction: column;
  }

  #section-{{ section.id }} .slider-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }

  #section-{{ section.id }} .slider-subheading {
    font-size: 16px;
    color: #666;
    margin: 4px 0 0;
  }

  #section-{{ section.id }} .slider-button {
    display: flex;
    padding: 8px 16px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  #section-{{ section.id }} .slider-button:hover {
    text-decoration: underline;
  }

  #section-{{ section.id }} .swiper-container {
    position: relative;
    overflow: hidden;
  }

  #section-{{ section.id }} .swiper-wrapper {
    display: flex;
  }

  #section-{{ section.id }} .swiper-slide {
    flex: 0 0 auto;
    width: calc((100% - 48px) / 4);
    margin-right: 16px;
    box-sizing: border-box;
  }

  #section-{{ section.id }} .swiper-slide:last-child {
    margin-right: 0;
  }

  #section-{{ section.id }} .product-card {
    background-color: #fff;
    padding: 16px;
    text-align: center;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #section-{{ section.id }} .product-card:hover {
    box-shadow: 0px 2px 8px -2px rgb(26 26 26 / 0.20);
  }

  #section-{{ section.id }} .product-image-wrapper {
    display: block;
    margin-bottom: 16px;
    height: 150px;
    overflow: hidden;
  }

  #section-{{ section.id }} .product-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }

  #section-{{ section.id }} .product-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px;
    max-width: 250px;
    text-align: left;
  }

  #section-{{ section.id }} .product-title a {
    text-decoration: none;
    color: #000;
  }

  #section-{{ section.id }} .product-price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
  }

  #section-{{ section.id }} .cart-form {
    margin: 0;
  }

  #section-{{ section.id }} .add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    background: none;
    cursor: pointer;
    gap: 15px;
  }

  #section-{{ section.id }} .add-to-cart-btn:hover {
    background: #e6e6e6;
    color: #000;
  }

  #section-{{ section.id }} .swiper-pagination {
    height: 4px;
    background-color: #e5e5e5;
    margin: 16px 0;
    position: relative;
  }

  #section-{{ section.id }} .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: #000;
  }

  #section-{{ section.id }} .swiper-button-prev,
  #section-{{ section.id }} .swiper-button-next {
    width: 40px;
    height: 40px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: black;
    border: 1px solid black;
    border-radius: 50%;
  }

  #section-{{ section.id }} .swiper-button-next::after,
  #section-{{ section.id }} .swiper-button-prev::after {
    position: relative;
    left: 16px;
    top: 7px;
  }
  
  .complete-set {
    padding: 60px 0;
  }

  .complete-set__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .complete-set__heading {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    position: relative;
  }

  .complete-set__heading::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background-color: #bb5811;
    margin: 8px auto 0;
  }

  /* slider container */
  .complete-set__cards {
    display: flex;
    gap: 12px;                   /* slimmer gap */
    margin-top: 40px;
    overflow-x: scroll;          /* always show scroll bar */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }

  /* WebKit scrollbar styling */
  .complete-set__cards::-webkit-scrollbar {
    height: 6px;
  }
  .complete-set__cards::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .complete-set__cards::-webkit-scrollbar-track {
    background: transparent;
  }

  .complete-set__card {
    min-width: 70%;              /* slimmer slides */
    background: #fff;
    border: 1px solid #eee;
    padding: 16px;               /* reduced padding */
    text-align: center;
    scroll-snap-align: start;
  }

  .complete-set__image {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }

  .complete-set__button {
    display: inline-block;
    margin-top: 16px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid black;
    padding-bottom: 2px;
  }

  /* Desktop: back to 3-col grid */
  @media screen and (min-width: 768px) {
    .complete-set__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: visible;
      gap: 20px;
    }
    .complete-set__card {
      min-width: auto;
      scroll-snap-align: none;
    }
  }

  .custom-banner-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.custom-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding-bottom: 16px;
}
.custom-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.0) 0%, rgba(0,0,0,0.8) 70%);
  z-index: 2;
}
.custom-banner__content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
.custom-banner--left .custom-banner__content-wrapper {
  justify-content: flex-start;
}
.custom-banner--right .custom-banner__content-wrapper {
  justify-content: flex-end;
}
.custom-banner__content {
  max-width: 500px;
  color: #fff;
}
/* NEW: text-alignment variants */
.custom-banner__content--left {
  text-align: left;
}
.custom-banner__content--center {
  text-align: center;
}
.custom-banner__content--right {
  text-align: right;
}

.custom-banner__upper-text {
  font-size: 14px;
  text-transform: uppercase;
  background-color: #00552e;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 15px;
}
.custom-banner__heading {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 15px;
  color: white;
}
.custom-banner__subheading {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */
.custom-banner__buttons {
  display: flex;
  gap: 15px;
}
/* NEW: button-justify variants */
.custom-banner__buttons--left {
  justify-content: flex-start;
}
.custom-banner__buttons--center {
  justify-content: center;
}
.custom-banner__buttons--right {
  justify-content: flex-end;
}

.custom-banner__btn {
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
.custom-banner__btn--primary {
  background-color: #fff;
  color: #000;
}
.custom-banner__btn--secondary {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}