/** Shopify CDN: Minification failed

Line 306:24 The "-" operator only works if there is whitespace on both sides

**/
/* =================================================================
   COMPONENT LIBRARY
   Reusable component styles used across multiple sections
   ================================================================= */

/* =================================================================
   SECTION PADDING - STANDARDIZED
   ================================================================= */

.custom-section-padding {
  padding: 32px 0;
}

@media screen and (min-width: 990px) {
  .custom-section-padding {
    padding: 64px 0;
  }
}

/* =================================================================
     SECTION HEADER - REUSABLE COMPONENT
     ================================================================= */

  .custom-section-header {
    margin-bottom: 32px;
  }

  .custom-section-header__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 8px 0;
    color: #000;
    text-transform: none !important;
  }

  .custom-section-header__subtitle {
    font-size: 18px;
    line-height: 140%;
    margin: 0;
    color: #666;
  }

  /* Alignment Options */
  .custom-section-header--center {
    text-align: center;
  }

  .custom-section-header--center .custom-section-header__title,
  .custom-section-header--center .custom-section-header__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .custom-section-header--left {
    text-align: left;
  }

  .custom-section-header--right {
    text-align: right;
  }

  .custom-section-header--right .custom-section-header__title,
  .custom-section-header--right .custom-section-header__subtitle {
    margin-left: auto;
  }

  /* Responsive */
  @media screen and (min-width: 990px) {
    .custom-section-header {
      margin-bottom: 40px;
    }

    .custom-section-header__title {
      font-size: 28px;
    }

    .custom-section-header__subtitle {
      font-size: 20px;
    }
  }

  /* Max width for centered headers */
  .custom-section-header--center .custom-section-header__title {
    max-width: 800px;
  }

  .custom-section-header--center .custom-section-header__subtitle {
    max-width: 600px;
  }

  /* =================================================================
     BENEFITS SECTION
     ================================================================= */

    .benefits-section {
    padding: 32px 0;
    color: #ffffff;
  }

  .benefits-container { /* unused */
    max-width: 1348px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .benefits-holder {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .benefit {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 12px;
  }

  .benefit-icon {
    flex-shrink: 0;
  }

  .benefit-icon img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .benefit-details-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .benefit-title {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    margin: 0;
    color: inherit;
    text-transform: capitalize !important;
  }

  .benefit-description {
    font-size: 13px;
    line-height: 18px;
    margin: 0;
    opacity: 0.8;
    color: inherit;
  }

  @media screen and (min-width: 768px) {
    .benefits-container {
      padding: 0 20px;
    }

    .benefits-holder {
      gap: 20px;
      flex-direction: row;
    }

    .benefit {
      flex: 1 1 calc(33.333% - 14px);
      gap: 14px;
    }

    .benefit-description {
      font-size: 14px;
      line-height: 20px;
    }
  }

  @media screen and (min-width: 990px) {
    .benefits-container {
      padding: 0 24px;
    }

    .benefits-holder {
      gap: 24px;
      justify-content: space-between;
    }

    .benefit {
      flex: 1 1 calc(25% - 18px);
      gap: 16px;
    }

    .benefit-icon img {
      width: 56px;
      height: 56px;
    }

    .benefit-title {
      font-size: 18px;
      line-height: 26px;
    }
  }

  /* =================================================================
     STAR RATING
     ================================================================= */

  .product-rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-rating-stars__wrapper {
    position: relative;
    display: flex;
    gap: 2px;
  }

  .product-rating-stars__empty,
  .product-rating-stars__filled {
    display: flex;
    gap: 2px;
  }

  .product-rating-stars__filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .product-rating-stars__text {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
  }

  /* =================================================================
     TESTIMONIALS SLIDER
     ================================================================= */

  .testimonials-slider {
    width: 100%;
  }

  .testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .testimonial-card,
  .testimonial-product-wrapper {
    width: 100%;
    min-width: 0; /* Prevent flex items from overflowing */
  }

  /* Flickity overrides - ensure proper sizing */
  .testimonials-slider .flickity-viewport {
    overflow: hidden;
    width: 100%;
  }

  .testimonials-slider .flickity-slider {
    display: flex;
    align-items: flex-start;
  }

@media screen and (min-width: 990px) {
  .testimonial-slide {
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
  }

  .testimonial-card {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
    min-width: 0;
  }

  .testimonial-product-wrapper {
    flex: 0 0 calc(40% - 16px);
    width: calc(40% - 16px);
    max-width: calc(40% - 16px);
    min-width: 0;
  }
}

@media screen and (min-width: 1280px) {
  .testimonial-card {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
  }

  .testimonial-product-wrapper {
    flex: 0 0 calc(40% - 16px);
    width: calc(40% - 16px);
    max-width: calc(40% -16px);
  }
}

  /* =================================================================
   TESTIMONIALS FLICKITY PAGINATION DOTS
   ================================================================= */

  .testimonials-slider .flickity-page-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    bottom: 0 !important;
    position: relative !important;
  }

  .testimonials-slider .flickity-page-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
  }

  .testimonials-slider .flickity-page-dots .dot:hover {
    background: rgba(0, 0, 0, 0.4);
  }

  .testimonials-slider .flickity-page-dots .dot.is-selected {
    width: 24px;
    border-radius: 4px;
    background: #000;
  }

  /* =================================================================
   FLICKITY NAVIGATION ARROWS (Like Hero Section)
   ================================================================= */

  .testimonials-slider-container {
    position: relative;
  }

  .testimonials-slider .flickity-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .testimonials-slider .flickity-button:hover {
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }

  .testimonials-slider .flickity-button:disabled {
    opacity: 0.3;
    cursor: default;
  }

  .testimonials-slider .flickity-previous {
    left: -24px;
  }

  .testimonials-slider .flickity-next {
    right: -24px;
  }

  .testimonials-slider .flickity-button svg {
    fill: #000;
  }

  .testimonials-slider .flickity-button .flickity-button-icon {
    fill: #000;
  }

  /* Hide on mobile */
  @media screen and (max-width: 989px) {
    .testimonials-slider .flickity-button {
      display: none;
    }
  }

  @media screen and (min-width: 990px) {
    .testimonials-slider .flickity-button {
      width: 56px;
      height: 56px;
    }

    .testimonials-slider .flickity-previous {
      left: -24px;
    }

    .testimonials-slider .flickity-next {
      right: -24px;
    }
  }

  @media screen and (min-width: 1600px) {
    .testimonials-slider .flickity-previous {
      left: -64px;
    }

    .testimonials-slider .flickity-next {
      right: -64px;
    }
  }

  .testimonials-arrow:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .testimonials-arrow:focus:not(:focus-visible) {
    outline: none;
  }

  .testimonials-arrow:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .testimonial-product-card__button:focus {
    outline: 2px solid #4AAB00;
    outline-offset: 2px;
  }

  /* =================================================================
     TESTIMONIAL CARD (LEFT)
     ================================================================= */

  .testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
  }

  .testimonial-card__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100%;
    justify-content: space-between;
  }

  .testimonial-card__quote {
    font-size: 20px;
    line-height: 130%;
    color: #000;
    margin: 0;
    font-style: normal;
    padding: 0;
  }

  .testimonial-card__customer {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .testimonial-card__photo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
  }

  .testimonial-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-card__name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
  }

  .testimonial-card__title {
    font-size: 16px;
    line-height: 20px;
    color: #656565;
  }

  @media screen and (min-width: 990px) {
    .testimonial-card__photo {
      width: 64px;
      height: 64px;
    }
    .testimonial-card {
      width: 50%;
      padding: 24px;
    }
    .testimonial-card__name {
      font-size: 20px;
    }
    .testimonial-card__quote {
      font-size: 26px;
    }
  }
  @media screen and (min-width: 1280px) {
    .testimonial-card {
      width: 60%;
    }
  }

  /* =================================================================
     COLLECTION LIST GRID
     ================================================================= */

  .collection-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 32px;
  }

  .collection-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  /* Image Box */
  .collection-card__image-box {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .collection-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0;
  }

  .collection-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
  }

  /* Content */
  .collection-card__content {
    margin-top: 16px;
  }

  .collection-card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    margin: 0 0 2px;
    text-transform: none!important;
  }

  .collection-card__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #656565;
    margin: 0;
  }

  @media screen and (min-width: 750px) {
    .collection-list-grid {
      grid-template-columns: repeat(4, 1fr);
      column-gap: 16px;
      row-gap: 16px;
    }
    .collection-card__content {
      margin-top: 24px;
    }
    .collection-card__title {
      font-size: 18px;
      line-height: 22px;
    }
    .collection-card__description {
      font-size: 16px;
      line-height: 22px;
    }
  }


  @media screen and (min-width: 990px) {
    .collection-list-grid {
      grid-template-columns: repeat(6, 1fr);
    }
    .collection-card:hover .collection-card__image-box {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px) scale(1.02);
    }
    
    .collection-card:hover .collection-card__title {
      color: #4AAB00;
    }
  }

  /* =================================================================
     CUSTOM PRESENTATION SECTION
     ================================================================= */

  .presentation-section {
    padding: 32px 0;
    background-color: #F8F8F8;
  }

  /* Container */
  .presentation-holder {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .presentation-accordion {
    width: 100%;
  }

    /* Mobile Graphics - inside each accordion item */
    .presentation-graphic--mobile {
    display: block;
    margin-bottom: 16px;
    }

    .presentation-graphics--desktop {
      display: none;
      width: 100%;
      margin-bottom: 0;
      order: -1;
    }

  .presentation-collapsible-stack {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .presentation-collapsible {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* Collapsible Trigger (Button) */
  .presentation-collapsible__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
  }

  .presentation-collapsible__trigger:hover {
    opacity: 0.8;
  }

  .presentation-collapsible__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    transition: color 0.3s ease;
  }

  /* Green title when open */
  .presentation-collapsible.is-open .presentation-collapsible__title {
    color: #4AAB00;
  }

  /* Static title (when only 1 item) */
  .presentation-collapsible__title-static {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #4AAB00;
    padding: 20px 0;
  }

  /* Icon */
  .presentation-collapsible__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .presentation-collapsible__icon svg {
    width: 12px;
    height: 8px;
  }

  /* Rotate icon when open */
  .presentation-collapsible.is-open .presentation-collapsible__icon {
    transform: rotate(180deg);
  }

  /* Collapsible Content */
  .presentation-collapsible__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .presentation-collapsible__content.is-open {
    max-height: 500px;
  }

  .presentation-collapsible__inner {
    padding: 0 0 24px 0;
  }

  .presentation-collapsible__text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
  }

  /* Static mode - all items open, no interaction */
.presentation-section[data-static-mode="true"] .presentation-collapsible-stack {
  border-top: none;
}

.presentation-section[data-static-mode="true"] .presentation-collapsible {
  border-bottom: none;
} 

.presentation-section[data-static-mode="true"] .presentation-collapsible__content {
  max-height: none;
  overflow: visible;
}

.presentation-section[data-static-mode="true"] .presentation-collapsible__title-static {
  color: #4AAB00;
  padding: 8px 0;
}

.presentation-section[data-static-mode="true"] .presentation-collapsible__trigger {
  padding: 8px 0;
  cursor: default;
  pointer-events: none;
}

.presentation-section[data-static-mode="true"] .presentation-collapsible.is-open .presentation-collapsible__title,
.presentation-section[data-static-mode="true"] .presentation-collapsible__title {
  color: #000;
}

.presentation-section[data-static-mode="true"] .presentation-collapsible__icon {
  display: none;
}

/* Mobile: Show ONLY when static mode AND has static image */
.presentation-section[data-static-mode="true"][data-has-static-image="true"] .presentation-graphics--desktop {
  display: block;
}

.presentation-button-wrapper {
  margin-top: 8px;
}

.presentation-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid #000;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.presentation-button:hover {
  background: #000;
  color: #fff;
}

.presentation-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.presentation-button:hover svg {
  transform: translateX(4px);
}

@media screen and (min-width: 990px) {
  .presentation-button-wrapper {
    margin-top: 24px;
  }
}

  .presentation-graphic__item {
    position: relative;
    width: 100%;
    background-color: #F8F8F8;
    border-radius: 8px;
    overflow: hidden;
  }

  /* 4:3 Aspect Ratio */
  .presentation-graphic__image-wrapper,
  .presentation-graphic__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 ratio */
    overflow: hidden;
  }

  .presentation-graphic__image,
  .presentation-graphic__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media screen and (min-width: 990px) {
    .presentation-section {
      padding: 64px 0;
      background-color: #ffffff;
    }

    .presentation-holder {
      flex-direction: row;
      gap: 80px;
      align-items: flex-start;
      padding: 32px;
      border-radius: 8px;
      background-color: #F8F8F8;
    }

    /* Left column: 40% */
    .presentation-accordion {
      width: 40%;
      flex-shrink: 0;
      padding: 24px;
    }

    /* Right column: 60% */
    .presentation-graphics--desktop {
      display: block !important;
      width: 60%;
      margin-bottom: 0;
      flex-grow: 1;
      order: 0;
    }

    .presentation-collapsible__trigger {
      padding: 24px 0;
    }

    .presentation-collapsible__title {
      font-size: 20px;
    }

    .presentation-collapsible__title-static {
      font-size: 20px;
      padding: 24px 0;
    }

    .presentation-collapsible__text {
      font-size: 16px;
    }
    /* Hide mobile graphics on desktop */
    .presentation-graphic--mobile {
        display: none;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .presentation-holder {
      gap: 48px;
    }

    .presentation-collapsible__title {
      font-size: 19px;
    }
  }

  .presentation-collapsible__trigger:focus {
    outline: 2px solid #97D700;
    outline-offset: 2px;
  }

  .presentation-collapsible__trigger:focus:not(:focus-visible) {
    outline: none;
  }

  .presentation-collapsible__trigger:focus-visible {
    outline: 2px solid #97D700;
    outline-offset: 2px;
  }

  .presentation-graphic__item {
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .presentation-section:empty {
    display: none;
  }

/* =================================================================
   FEATURED COLLECTION GRID
   ================================================================= */

.featured-collection-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, calc((100% - 8px) / 2));
}

/* Tablet: 3 columns, 16px gap */
@media screen and (min-width: 750px) {
  .featured-collection-grid {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: Dynamic based on setting */
@media screen and (min-width: 990px) {
  .featured-collection-grid {
    overflow: visible;
  }
  .featured-collection-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-collection-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-collection-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured-collection-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* =================================================================
   FEATURED COLLECTION GRID - HORIZONTAL SCROLL
   ================================================================= */

.featured-collection-grid--scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.featured-collection-grid--scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.featured-collection-grid--scroll {
  gap: 8px;
}

.featured-collection-grid--scroll .featured-collection-grid__item {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
}

/* Tablet */
@media screen and (min-width: 750px) {
  .featured-collection-grid--scroll {
    gap: 16px;
  }

  .featured-collection-grid--scroll .featured-collection-grid__item {
    width: 300px;
  }
}

/* Desktop: Match per_row setting width */
@media screen and (min-width: 990px) {
  .featured-collection-grid--scroll.featured-collection-grid--2 .featured-collection-grid__item {
    width: calc((100% - 16px) / 2);
  }

  .featured-collection-grid--scroll.featured-collection-grid--3 .featured-collection-grid__item {
    width: calc((100% - 32px) / 3);
  }

  .featured-collection-grid--scroll.featured-collection-grid--4 .featured-collection-grid__item {
    width: calc((100% - 48px) / 4);
  }

  .featured-collection-grid--scroll.featured-collection-grid--5 .featured-collection-grid__item {
    width: calc((100% - 64px) / 5);
  }
  .featured-collection-grid--scroll {
    overflow-x: visible;
    scroll-snap-type: none;
  }
}

  .featured-collection__view-all {
    margin-top: 40px;
    text-align: center;
  }

  .featured-collection__view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .featured-collection__view-all-link:hover {
    opacity: 0.7;
  }

  .featured-collection__view-all-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .featured-collection__view-all-link:hover svg {
    transform: translateX(4px);
  }

/* =================================================================
   PRODUCT CARD - REUSABLE COMPONENT
   ================================================================= */

.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  width: 100%;
  min-height: 100%;
}

/* =================================================================
   PRODUCT CARD - IMAGE BOX (Shared)
   ================================================================= */

.product-card__image-link {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.product-card__image-box {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.product-card__rating {
  min-height: 20px;
  line-height: 20px;
}

/* Secondary Image Hover */
.product-card__image--primary,
.product-card__image--secondary {
  transition: opacity 0.3s ease;
}

.product-card__image--secondary {
  opacity: 0;
}

.product-card__image-box--has-secondary:hover .product-card__image--primary {
  opacity: 0;
}

.product-card__image-box--has-secondary:hover .product-card__image--secondary {
  opacity: 1;
}

/* =================================================================
   PRODUCT CARD - HORIZONTAL LAYOUT
   ================================================================= */

.product-card--horizontal {
  flex-direction: row;
  gap: 16px;
}

.product-card--horizontal .product-card__image-box {
  width: 120px;
}

.product-card--horizontal .product-card__info {
  justify-content: center;
}

@media screen and (min-width: 990px) {
  .product-card--horizontal {
    padding: 16px 24px;
    gap: 32px;
  }

  .product-card--horizontal .product-card__image-box {
    width: 180px;
  }

  .product-card--horizontal .product-card__button {
    max-width: 240px;
  }
}

@media screen and (min-width: 1280px) {
  .product-card--horizontal .product-card__image-box {
    width: 240px;
  }
}

/* =================================================================
   PRODUCT CARD - VERTICAL LAYOUT
   ================================================================= */

.product-card--vertical {
  flex-direction: column;
  gap: 16px;
}

.product-card--vertical .product-card__image-box {
  width: 100%;
}

.product-card--vertical .product-card__info {
  gap: 12px;
}

.product-card--vertical .product-card__button {
  width: 100%;
}

@media screen and (min-width: 990px) {
  .product-card--vertical .product-card__info {
    gap: 16px;
  }
}

/* =================================================================
   PRODUCT CARD - SHARED STYLES
   ================================================================= */

/* Info Section */
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

/* Title */
.product-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375; /* 16px * 1.375 = 22px per line */
  margin: 0;
  text-transform: none !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__title a {
  color: #000;
  text-decoration: none;
}

.product-card__title a:hover {
  text-decoration: underline;
}

/* Title Line Clamp Options */
.product-card__title--lines-1 {
  -webkit-line-clamp: 1;
  height: calc(16px * 1.375 * 1); /* 1 line */
}

.product-card__title--lines-2 {
  -webkit-line-clamp: 2;
  height: calc(16px * 1.375 * 2); /* 2 lines */
}

.product-card__title--lines-3 {
  -webkit-line-clamp: 3;
  height: calc(16px * 1.375 * 3); /* 3 lines */
}

/* Features List */
.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #333;
  margin: 0;
}

.product-card__feature svg {
  flex-shrink: 0;
  color: #4AAB00;
}

/* Price */
.product-card__price {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #006FCF;
}

.product-card__price--compare {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.product-card__price--current {
  color: #006FCF;
}

.product-card__form {
  margin: 0;
}

.product-card__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  background: #4AAB00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card__button:hover {
  background: #3d9200;
}

.product-card__button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-card__button svg {
  width: 20px;
  height: 20px;
}

.product-card__button:focus {
  outline: 2px solid #4AAB00;
  outline-offset: 2px;
}

/* =================================================================
   PRODUCT CARD - HOVER EFFECT (Desktop only)
   ================================================================= */

@media screen and (min-width: 990px) {
  .product-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px) scale(1.02);
  }

  /* Disable hover effect */
  .product-card--no-hover {
    transition: none;
  }

  .product-card--no-hover:hover {
    box-shadow: none;
    transform: none;
  }
}

/* =================================================================
   PRODUCT CARD - GIFT BOX ICON
   ================================================================= */


.product-card .sca-gift-icon-collection-page {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 10;
}

.product-card .sca-gift-icon-collection-img {
  position: relative !important;
  max-width: 50px;
  height: auto;
}

/* =================================================================
   PRODUCT CARD - GRID CONTEXT ADDITIONS
   ================================================================= */

/* Grid context wrapper adjustments */
.product-card--grid {
  height: 100%;
  position: relative;
}

/* =================================================================
   PRODUCT CARD - TAGS
   ================================================================= */

.product-card__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  border-radius: 4px;
}

.product-card__tag--sale {
  background: #C20000;
  color: #fff;
}

.product-card__tag--sold-out {
  background: #666;
  color: #fff;
}

.product-card__tag--custom {
  background: #000;
  color: #fff;
}

/* =================================================================
   PRODUCT CARD - SKU
   ================================================================= */

.product-card__sku {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  margin: -4px 0 4px;
}

/* =================================================================
   PRODUCT CARD - COLOR SWATCHES
   ================================================================= */

.product-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}

.product-card__swatches .color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card__swatches .color-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card__swatches .color-swatch.is-active {
  border-color: #000;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #000;
}

/* Color image placeholder for swatch hover */
.product-card__color-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.product-card__color-image.is-active {
  opacity: 1;
}

/* =================================================================
   PRODUCT CARD - QUICK SHOP BUTTON
   ================================================================= */

.product-card__quick-shop {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  white-space: nowrap;
}

.product-card__image-link:hover .product-card__quick-shop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card__quick-shop:hover {
  background: #000;
  color: #fff;
}

/* =================================================================
   PRODUCT CARD - SAVINGS BADGE
   ================================================================= */

.product-card__price--savings {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  background: #C20000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
}

/* =================================================================
   PRODUCT CARD - GRID RESPONSIVE ADJUSTMENTS
   ================================================================= */

@media screen and (max-width: 768px) {
  .product-card__tag {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .product-card__quick-shop {
    display: none;
  }
  
  .product-card__swatches .color-swatch {
    width: 20px;
    height: 20px;
  }
  
  .product-card__sku {
    font-size: 12px;
  }
  
  .product-card__price--savings {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    width: fit-content;
  }
}

/* =================================================================
   PRODUCT CARD - INTEGRATION WITH THEME GRID
   ================================================================= */

/* Ensure card fills grid item */
.grid-product .product-card {
  height: 100%;
}

/* Remove default grid-product styles when using product-card */
.grid-product:has(.product-card) .grid-product__content {
  display: contents;
}

/* Fallback for browsers without :has() */
.grid-product .product-card--grid {
  margin: 0;
}
.grid-product {
  margin: 0!important;
}

/* =================================================================
   PRODUCT CARD - GRID OVERRIDES
   ================================================================= */


/* Desktop: border only on hover, 16px gap */
@media screen and (min-width: 990px) {
  .product-card--grid {
    border: 1px solid #f1f1f1;
  }

  .product-card--grid:hover {
    border-color: #e0e0e0;
  }
}

/* Gap overrides */
.collection-grid__wrapper .grid--uniform {
  margin-left: -1px;
}

.collection-grid__wrapper .grid__item.grid-product {
  padding-left: 2px;
  padding-top: 2px;
}

@media screen and (min-width: 769px) {
  .collection-grid__wrapper .grid--uniform {
    margin-left: -16px;
  }

  .collection-grid__wrapper .grid__item.grid-product {
    padding-left: 16px;
    padding-top: 16px;
  }
}


/* =================================================================
   FOOTER - MODULAR SYSTEM
   ================================================================= */

/* Footer base */
.site-footer {
  width: 100%;
}

/* =================================================================
   FOOTER ROWS
   ================================================================= */

.footer-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .footer-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

/* =================================================================
   FOOTER BLOCKS (Columns)
   ================================================================= */

.footer__block {
  width: 100%;
  min-width: 0;
}

@media screen and (min-width: 769px) {
  .footer__block {
    /* Width is set via inline styles from schema */
    flex-shrink: 0;
  }
}

/* Spacer - hidden on mobile */
.footer__block[data-type="spacer"] {
  display: none;
}

@media screen and (min-width: 769px) {
  .footer__block[data-type="spacer"] {
    display: block;
  }
}

/* =================================================================
   FOOTER LOGO
   ================================================================= */

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo__link {
  display: inline-block;
}

.footer-logo__image {
  display: block;
  width: auto;
  height: auto;
}

@media screen and (min-width: 769px) {
  .footer-logo {
    margin-bottom: 0;
  }
}

/* =================================================================
   FOOTER - MODULAR SYSTEM
   ================================================================= */

/* Footer base */
.site-footer {
  width: 100%;
}

/* =================================================================
   FOOTER ROWS
   ================================================================= */

.footer-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .footer-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

/* =================================================================
   FOOTER BLOCKS (Columns)
   ================================================================= */

.footer__block {
  width: 100%;
  min-width: 0;
}

@media screen and (min-width: 769px) {
  .footer__block {
    /* Width is set via inline styles from schema */
    flex-shrink: 0;
  }
}

/* Spacer - hidden on mobile */
.footer__block[data-type="spacer"] {
  display: none;
}

@media screen and (min-width: 769px) {
  .footer__block[data-type="spacer"] {
    display: block;
  }
}

/* =================================================================
   FOOTER LOGO
   ================================================================= */

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo__link {
  display: inline-block;
}

.footer-logo__image {
  display: block;
  width: auto;
  height: auto;
}

@media screen and (min-width: 769px) {
  .footer-logo {
    margin-bottom: 0;
  }
}

/* =================================================================
   FOOTER MENU
   ================================================================= */

.footer-menu {
  margin-bottom: 0;
}

/* Menu title - desktop */
.footer-menu__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize!important;
  letter-spacing: 0.05em;
  margin: 0 0 24px 0;
  color: inherit;
}

/* Menu title - mobile trigger */
button.footer-menu__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  margin: 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.footer-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-menu__trigger[aria-expanded="true"] .footer-menu__icon {
  transform: rotate(180deg);
}

/* Menu content */
.footer-menu__content {
  overflow: hidden;
}

.footer-menu__content--collapsible {
  max-height: 0;
  transition: max-height 0.3s ease;
}

@media screen and (max-width: 768px) {
  .footer-menu__content--collapsible.is-open {
    max-height: 500px;
  }
}

@media screen and (min-width: 769px) {
  .footer-menu__content,
  .footer-menu__content--collapsible {
    max-height: none;
    overflow: visible;
  }
}

/* Menu list */
.footer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .footer-menu__content--collapsible .footer-menu__list {
    padding: 16px 0;
  }
}

.footer-menu__item {
  margin-bottom: 10px;
}

.footer-menu__item:last-child {
  margin-bottom: 0;
}

.footer-menu__link {
  font-size: 16px;
  line-height: 22px;
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-menu__link:hover {
  opacity: 1;
}

/* =================================================================
   FOOTER CURRENCY SELECTOR
   ================================================================= */

.footer-selectors {
  display: flex;
  width: 100%;
}

.footer-selectors--left {
  justify-content: flex-start;
}

.footer-selectors--center {
  justify-content: center;
}

.footer-selectors--right {
  justify-content: flex-end;
}

/* Currency flags in footer */
.footer-selectors .currency-flag {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

.footer-selectors .disclosure-list__label {
  padding-left: 0!important;
}

.footer-selectors .currency-flag {
  margin-right: 10px;
}

.footer-selectors .disclosure__toggle {
  display: flex;
  align-items: center;
  margin-left: -6px;
}

/* =================================================================
   FOOTER COPYRIGHT
   ================================================================= */

.footer-copyright {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-copyright--left {
  justify-content: flex-start;
}

.footer-copyright--center {
  justify-content: center;
}

.footer-copyright--right {
  justify-content: flex-end;
}

.footer-copyright__text {
  font-size: 14px;
  margin: 0;
  opacity: 0.7;
}

/* =================================================================
   FOOTER PAYMENT ICONS
   ================================================================= */

.footer-payments {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-payments--left {
  justify-content: flex-start;
}

.footer-payments--center {
  justify-content: center;
}

.footer-payments--right {
  justify-content: flex-end;
}

.footer-payments__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-payments__item {
  display: flex;
  align-items: center;
}

.footer-payments__item svg {
  height: 24px;
  width: auto;
}

/* =================================================================
   FOOTER SPACER
   ================================================================= */

.footer-spacer {
  /* Intentionally empty - width set by inline styles */
}

/* =================================================================
   FOOTER NEWSLETTER
   ================================================================= */

.footer-newsletter__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
}

.footer-newsletter__text {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-newsletter__text p {
  margin: 0;
}

.footer-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 400px;
}

.footer-newsletter__input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  background: transparent;
  color: inherit;
}

.footer-newsletter__input::placeholder {
  color: inherit;
  opacity: 0.5;
}

.footer-newsletter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-newsletter__button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter__success {
  font-size: 14px;
  color: #4CAF50;
  margin: 0;
}

/* =================================================================
   FOOTER CUSTOM TEXT
   ================================================================= */

.footer-custom__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
}

.footer-custom__text {
  font-size: 14px;
  opacity: 0.7;
}

.footer-custom__text p {
  margin: 0 0 8px 0;
}

.footer-custom__text p:last-child {
  margin-bottom: 0;
}

/* =================================================================
   FOOTER MOBILE ADJUSTMENTS
   ================================================================= */

@media screen and (max-width: 768px) {
  /* Row 3: Stack copyright above payment icons */
  .footer-row--3 {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-row--3 .footer__block {
    width: 100%;
    text-align: center;
  }

  .footer-row--3 .footer-copyright,
  .footer-row--3 .footer-payments {
    justify-content: center;
  }

  /* Row 2: Center currency selector on mobile */
  .footer-row--2 .footer-selectors {
    justify-content: center;
  }

  /* Payment icons wrap */
  .footer-payments__list {
    justify-content: center;
  }
}

/* =================================================================
   UTILITY: Hide elements responsively
   ================================================================= */

.small--hide {
  display: none;
}

@media screen and (min-width: 769px) {
  .small--hide {
    display: block;
  }

  .medium-up--hide {
    display: none;
  }
}

.multi-selectors__item {
  margin: 0!important;
}

/* =================================================================
   BREADCRUMBS - REDESIGNED
   ================================================================= */

.breadcrumb {
  text-align: left;
  padding: 16px 0;
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.breadcrumb__inner::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.breadcrumb__link,
.breadcrumb__current,
.breadcrumb__divider {
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__link--home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__home-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.breadcrumb__text {
  /* Home text styling */
}

.breadcrumb__divider {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumb__current {
  opacity: 0.7;
}

/* =================================================================
   BREADCRUMBS - MOBILE
   ================================================================= */

@media screen and (max-width: 768px) {
  .collection-content .breadcrumb {
    margin: -16px 0 16px !important;
  }

  .breadcrumb__link,
  .breadcrumb__current,
  .breadcrumb__divider {
    font-size: 12px;
  }

  .breadcrumb__home-icon {
    width: 14px;
    height: 14px;
  }

  .breadcrumb__divider {
    margin: 0 6px;
  }

  /* Allow horizontal scroll on mobile */
  .breadcrumb__inner {
    padding-right: 16px; /* Extra space for scroll */
  }
}
@media screen and (min-width: 769px) {
    .collection-content .breadcrumb {
    margin: -25px 0 24px !important;
  }
}

/* =================================================================
   COLLECTION PAGE
   ================================================================= */

.custom-collection-title-box {
  display:flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid #00000010;
  margin-bottom: 20px;
}

.collection-filter {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #00000010;
}

.collection-sidebar__title {
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize!important;
  font-weight: 700;
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

  .collection-filter__item--sort,
  .collection-filter__item--drawer {
    margin-bottom: 0 !important;
  }

@media screen and (min-width: 769px) {
  .collection-filter__item--count {
    font-size: 16px !important;
    line-height: 24px !important;
    margin: 0 !important;
  }
}

.collapsible-trigger-btn {
  text-transform: capitalize!important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 600;
}

/* =================================================================
   PAGINATION - CUSTOM STYLE
   ================================================================= */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
  padding: 0;
}

.pagination .prev,
.pagination .next {
  background: none!important;
}

/* Prev/Next Arrow Buttons */
.pagination .prev a,
.pagination .next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}

.pagination .prev a:hover,
.pagination .next a:hover {
  background: #f5f5f5;
}

/* Disabled state (when on first/last page) */
.pagination .prev:not(:has(a)),
.pagination .next:not(:has(a)) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Arrow Icons */
.pagination .prev svg,
.pagination .next svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pagination .prev a svg,
.pagination .next a svg {
  color: #000;
}

/* Hide fallback text */
.pagination .icon__fallback-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Page Numbers */
.pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.pagination .page a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.pagination .page a:hover {
  background: #f5f5f5;
}

/* Current Page - Green Circle */
.pagination .page.current {
  opacity: 1!important;
  background: #4AAB00;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
}

/* Ellipsis */
.pagination .deco {
  color: #666;
  font-size: 16px;
}

/* =================================================================
   PRODUCT PAGE
   ================================================================= */

.page-content--product {
  padding-top: 16px !important;
}

@media only screen and (min-width: 769px) {
    .product-single__title {
        font-size: 28px !important;
        line-height: 36px !important;
        text-transform: capitalize !important;
        font-weight: 600 !important;
        margin-top: 24px !important;
    }
    .product__price {
      font-size: 24px !important;
      font-weight: 600 !important;
      line-height: 28px !important;
    }
}

.product-info-block {
  margin-bottom: 20px;
}

.product-info-block__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

.product-info-block__content {
  /* Content styling */
}

/* =================================================================
   PRODUCT STOCK + SKU BLOCK
   ================================================================= */

.product-block--stock-sku {
  margin-bottom: 16px;
}

.stock-sku-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Stock Status */
.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stock-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stock-status__dot--in-stock {
  background-color: #22c55e;
}

.stock-status__dot--out-of-stock {
  background-color: #ef4444;
}

.stock-status__dot--backorder {
  background-color: #f59e0b;
}

.stock-status__text {
  font-size: 14px;
  font-weight: 500;
}

.stock-status__text--in-stock {
  color: #22c55e;
}

.stock-status__text--out-of-stock {
  color: #ef4444;
}

.stock-status__text--backorder {
  color: #f59e0b;
}

/* SKU */
.product-sku {
  font-size: 14px;
  color: #666;
}

.product-sku__prefix {
  color: #666;
}

.product-sku__value {
  color: #333;
  font-weight: 500;
}

/* =================================================================
   CUSTOM PRODUCT RECOMMENDATIONS
   ================================================================= */

.custom-recommendations-section {
  padding: 40px 0;
}

/* Hide section if no recommendations */
product-recommendations.hide .custom-recommendations-section {
  display: none;
}

/* Placeholder loading state */
.product-recommendations-placeholder .visually-invisible {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* When recommendations are loaded */
.product-recommendations-placeholder .product-recommendations {
  visibility: visible;
}

/* Ensure grid inherits from featured-collection-grid */
.custom-recommendations-section .featured-collection-grid {
  /* Inherits all styles from component-library.css */
}

@media screen and (max-width: 749px) {
  .custom-recommendations-section {
    padding: 32px 0;
  }
}

/* =================================================================
   PRODUCT BUY ROW - Quantity + Add to Cart Inline
   ================================================================= */

/* Wrapper for quantity and buy buttons */
.product-block--quantity,
.product-block--buy-buttons {
  margin-bottom: 0;
}

/* Create flex container for quantity + ATC */
.product-single__meta .product-block--quantity {
  margin-bottom: 8px;
}

.product-single__meta .product-block--quantity + .product-block--buy-buttons {
  margin-top: 0;
}

/* Buy row layout */
.product-buy-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.product-buy-row__quantity {
  flex: 0 0 auto;
  width: 120px;
}

.product-buy-row__quantity .js-qty__wrapper {
  height: 100%;
  min-height: 52px;
}

.product-buy-row__button {
  flex: 1;
}

/* Quantity input styling */
.product-buy-row .js-qty__wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  max-width: 100%;
}

.product-buy-row .js-qty__num {
  width: 100%;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  -moz-appearance: textfield;
}

.product-buy-row .js-qty__num::-webkit-outer-spin-button,
.product-buy-row .js-qty__num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-buy-row .js-qty__adjust {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-buy-row .js-qty__adjust:hover {
  background: #f5f5f5;
}

.product-buy-row .js-qty__adjust svg {
  width: 14px;
  height: 14px;
}

/* Add to Cart button styling */
.product-buy-row .btn.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 10px 24px;
  background: #4AAB00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: capitalize;
}

.product-buy-row .btn.add-to-cart:hover {
  background: #3d8f00!important;
}

.product-buy-row .btn.add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Cart icon in button */
.product-buy-row .btn.add-to-cart .btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Payment buttons below */
.product-buy-row__payments {
  margin-top: 12px;
}

.product-buy-row__payments .shopify-payment-button {
  margin-top: 0;
}

.product-buy-row__payments .shopify-payment-button__button {
  border-radius: 8px;
  min-height: 48px;
}

/* Hide original full-width button class overrides */
.product-buy-row .btn--full {
  width: 100%;
}

/* Payment terms styling */
.product-buy-row__payments .product__policies {
  margin-top: 8px;
  text-align: center;
}

/* Label above quantity */
.product-buy-row__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .product-buy-row {
    gap: 8px;
  }
  
  .product-buy-row .js-qty__num {
    width: 40px;
  }
  
  .product-buy-row .js-qty__adjust {
    width: 36px;
  }
  
  .product-buy-row .btn.add-to-cart {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* =================================================================
   PRODUCT BLOCKS - Labeled Sections
   ================================================================= */

/* Base block spacing */
.product-block {
  margin-bottom: 20px;
}

/* Label styling (reusable) */
.product-block__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

/* Content wrapper */
.product-block__content {
  /* Container for block content */
}

/* =================================================================
   PRICE BLOCK
   ================================================================= */

.product-block--price {
  margin-bottom: 24px;
}

.product-block--price .product__price {
  font-size: 28px;
  font-weight: 700;
  color: #e53935; /* Red/orange price color from design */
  line-height: 1.2;
}

.product-block--price .product__price--compare {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.product-block--price .product__price.on-sale {
  color: #e53935;
}

/* =================================================================
   RATINGS BLOCK
   ================================================================= */

.product-block--ratings {
  margin-bottom: 24px;
}

.product-block--ratings .jdgm-preview-badge {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

/* =================================================================
   STOCK + SKU BLOCK
   ================================================================= */

.product-block--stock-sku {
  margin-bottom: 24px;
}
/* =================================================================
   RATINGS BLOCK
   ================================================================= */

.product-block--ratings {
  margin-bottom: 24px;
}

.product-block--ratings .jdgm-preview-badge {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.product-block--ratings .jdgm-prev-badge__stars {
  color: #000;
}

.product-block--ratings .jdgm-prev-badge__text {
  font-size: 14px;
  color: #333;
}

/* =================================================================
   PRODUCT BLOCKS - Force Left Alignment on Mobile
   ================================================================= */

@media screen and (max-width: 749px) {
  /* Override theme's mobile center alignment */
  .product-single__meta,
  .product-single__meta .product-block,
  .product-single__meta .product-block__label,
  .product-single__meta .product-block__content,
  .product-block--stock-sku,
  .product-block--ratings,
  .product-block--price,
  .product-block--buy-row,
  .product-buy-row__label {
    text-align: left;
  }
  
  /* Ensure flexbox items align left */
  .stock-sku-row,
  .product-block--ratings .jdgm-preview-badge {
    justify-content: flex-start;
  }
  
  /* Price specifically */
  .product-block--price .product__price {
    text-align: left;
  }
}

/* =================================================================
   FIX: Quantity selector height (prevent stretching)
   ================================================================= */

.product-buy-row {
  align-items: flex-start; /* Don't stretch children */
}

.product-buy-row__quantity {
  align-self: flex-start;
  flex-shrink: 0;
}

.product-buy-row__quantity .js-qty__wrapper {
  height: 56px; /* Fixed height */
  min-height: 56px;
  max-height: 56px;
}

/* Ensure button also has fixed height */
.product-buy-row__button .btn.add-to-cart {
  height: 56px;
  min-height: 56px;
}

/* If FBT app injects content, push it below */
.product-buy-row {
  flex-wrap: wrap;
}

.product-buy-row__quantity,
.product-buy-row__button {
  flex: 0 0 auto;
}

.product-buy-row__button {
  flex: 1 1 auto;
  min-width: 200px;
}

/* Any injected app content goes full width below */
.product-buy-row > *:not(.product-buy-row__quantity):not(.product-buy-row__button) {
  flex: 0 0 100%;
  order: -1; /* Move ABOVE the qty + button row */
  margin-bottom: 16px;
}

/* Hide ratings block if Judge.me badge is empty */
.product-block--ratings .jdgm-preview-badge:empty,
.product-block--ratings .jdgm-prev-badge[data-average-rating="0.00"] {
  display: none;
}

/* Hide the entire block if no stars are visible */
.product-block--ratings:has(.jdgm-prev-badge[data-average-rating="0.00"]),
.product-block--ratings:has(.jdgm-preview-badge:empty) {
  display: none;
}