/** Shopify CDN: Minification failed

Line 8499:2 Unexpected "{"
Line 8499:3 Expected identifier but found "%"
Line 8499:51 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-impact (INDEX:1) */
.about-impact {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(74, 124, 44, 0.03) 100%);
    box-sizing: border-box;
  }

  .about-impact__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-impact__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-5xl);
  }

  .impact-metric {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    border-top: 4px solid var(--sage-green);
    transition: all 0.4s ease;
  }

  .impact-metric:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
  }

  .impact-metric__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
    border-radius: var(--radius-full);
  }

  .impact-metric__icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
  }

  .impact-metric__number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: var(--sage-green);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
  }

  .impact-metric__label {
    font-size: var(--body-large);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xs);
  }

  .impact-metric__description {
    font-size: var(--body-small);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    margin-top: var(--spacing-sm);
  }

  .farmer-stories,
  .community-initiatives {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    margin-bottom: var(--spacing-3xl);
    border-left: 4px solid var(--sage-green);
  }

  .farmer-stories__title,
  .community-initiatives__title {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    color: var(--forest-green);
    margin-bottom: var(--spacing-lg);
  }

  .farmer-stories__content,
  .community-initiatives__content {
    font-size: var(--body-large);
    line-height: 1.8;
    color: var(--text);
  }

  @media (max-width: 768px) {
    .impact-metrics {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-lg);
    }

    .impact-metric {
      padding: var(--spacing-xl);
    }

    .farmer-stories,
    .community-initiatives {
      padding: var(--spacing-xl);
    }
  }

  @media (max-width: 480px) {
    .impact-metrics {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:about-impact */

/* START_SECTION:about-intro (INDEX:2) */
.about-intro {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.3) 100%);
    box-sizing: border-box;
  }

  .about-intro__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-intro__image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-4xl);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
  }

  .about-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-intro__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.3) 0%, rgba(74, 124, 44, 0.2) 100%);
  }

  .about-intro__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .about-intro__heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .about-intro__subheading {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xl);
    line-height: 1.4;
  }

  .about-intro__story {
    font-size: var(--body-large);
    line-height: 1.8;
    color: var(--text);
    margin-bottom: var(--spacing-4xl);
    text-align: left;
  }

  .about-intro__founders-message {
    margin-top: var(--spacing-4xl);
    padding-top: var(--spacing-4xl);
    border-top: 2px solid rgba(74, 124, 44, 0.1);
  }

  .founders-message {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.06) 0%, rgba(255, 255, 255, 0.04) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--sage-green);
    text-align: left;
  }

  .founders-message__quote {
    font-size: var(--body-large);
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
    padding-left: var(--spacing-lg);
    position: relative;
  }

  .founders-message__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--sage-green);
    font-family: var(--font-heading);
    line-height: 1;
  }

  .founders-message__author {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(74, 124, 44, 0.1);
  }

  .founders-message__name {
    font-weight: 700;
    color: var(--forest-green);
    font-size: var(--body-normal);
  }

  .founders-message__title {
    font-size: var(--body-small);
    color: #666;
  }

  @media (max-width: 768px) {
    .about-intro__image {
      height: 300px;
      margin-bottom: var(--spacing-2xl);
    }

    .about-intro__story {
      text-align: center;
    }

    .founders-message {
      padding: var(--spacing-lg);
    }
  }
/* END_SECTION:about-intro */

/* START_SECTION:about-mission (INDEX:3) */
.about-mission {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-sizing: border-box;
  }

  .about-mission__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-5xl);
  }

  .mission-card {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    border-top: 4px solid var(--sage-green);
    text-align: center;
    transition: all 0.4s ease;
  }

  .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
  }

  .mission-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: var(--radius-full);
    color: var(--forest-green);
  }

  .mission-card__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    padding: 10px;
    padding-top: 0;
  }

  .mission-card__content {
    font-size: var(--body-large);
    line-height: 1.8;
    color: var(--text);
    text-align: left;
  }

  .about-mission__goals {
    text-align: center;
  }

  .about-mission__goals-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
  }

  .goal-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.8) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(74, 124, 44, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }

  .goal-item:hover {
    transform: translateY(-4px);
    border-color: var(--sage-green);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
  }

  .goal-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
    border-radius: var(--radius-full);
  }

  .goal-item__icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
  }

  .goal-item__title {
    font-family: var(--font-heading);
    font-size: var(--h4-size);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
  }

  .goal-item__description {
    font-size: var(--body-normal);
    color: var(--text);
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 968px) {
    .about-mission__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
    }

    .mission-card {
      padding: var(--spacing-xl);
    }

    .goals-grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:about-mission */

/* START_SECTION:about-values (INDEX:4) */
.about-values {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.3) 50%, var(--white) 100%);
    box-sizing: border-box;
  }

  .about-values__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-values__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .value-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.8) 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(74, 124, 44, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  }

  .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green) 0%, var(--white) 50%, var(--sage-green) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15);
    border-color: rgba(74, 124, 44, 0.3);
  }

  .value-card:hover::before {
    transform: scaleX(1);
  }

  .value-card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: var(--radius-full);
    transition: all 0.4s ease;
  }

  .value-card__icon svg {
    width: 40px;
    height: 40px;
    color: var(--forest-green);
    transition: all 0.4s ease;
  }

  .value-card:hover .value-card__icon {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
    transform: scale(1.1) rotate(5deg);
  }

  .value-card:hover .value-card__icon svg {
    color: var(--white);
    transform: scale(1.1);
  }

  .value-card__title {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
  }

  .value-card__description {
    font-size: var(--body-normal);
    line-height: 1.7;
    color: var(--text);
  }

  @media (max-width: 768px) {
    .values-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .value-card {
      padding: var(--spacing-xl);
    }
  }
/* END_SECTION:about-values */

/* START_SECTION:cart (INDEX:7) */
.cart-page {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: var(--white);
    box-sizing: border-box;
  }

  .cart-page__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .cart-page__header {
    margin-bottom: var(--spacing-4xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid rgba(74, 124, 44, 0.1);
  }

  .cart-page__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    padding-top: 0;
  }

  .cart-page__item-count {
    font-size: var(--body-large);
    color: #666;
    margin: 0;
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-5xl);
  }

  .cart-page__items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .cart-item-row {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px 50px;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.5) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(74, 124, 44, 0.1);
    align-items: start;
    transition: all 0.3s ease;
  }

  .cart-item-row:hover {
    border-color: rgba(74, 124, 44, 0.2);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
  }

  .cart-item-row__image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
  }

  .cart-item-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .cart-item-row__image:hover img {
    transform: scale(1.05);
  }

  .cart-item-row__image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: var(--bg);
  }

  .cart-item-row__details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    min-width: 0;
  }

  .cart-item-row__title {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 700;
    color: var(--forest-green);
    margin: 0;
  }

  .cart-item-row__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cart-item-row__title a:hover {
    color: var(--sage-green);
  }

  .cart-item-row__variant {
    font-size: var(--body-small);
    color: #666;
    margin: 0;
  }

  .cart-item-row__properties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
  }

  .cart-item-row__property {
    font-size: var(--body-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(74, 124, 44, 0.1);
    border-radius: var(--radius-sm);
    color: var(--forest-green);
  }

  .cart-item-row__price {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .cart-item-row__price-compare {
    font-size: var(--body-small);
    color: #999;
    text-decoration: line-through;
  }

  .cart-item-row__price-current {
    font-size: var(--body-normal);
    font-weight: 700;
    color: var(--forest-green);
  }

  .cart-item-row__quantity {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .cart-item-row__quantity-label {
    font-size: var(--body-small);
    font-weight: 600;
    color: var(--text);
  }

  .cart-item-row__quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs);
    max-width: 120px;
  }

  .cart-item-row__quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--forest-green);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-item-row__quantity-btn:hover {
    background: rgba(74, 124, 44, 0.1);
  }

  .cart-item-row__quantity-value {
    display: inline-block;
    min-width: 32px;
    text-align: center;
    font-size: var(--body-normal);
    font-weight: 700;
    color: var(--text);
    line-height: 32px;
  }

  .cart-item-row__total {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: right;
  }

  .cart-item-row__total-label {
    font-size: var(--body-small);
    color: #666;
  }

  .cart-item-row__total-price {
    font-size: var(--body-large);
    font-weight: 700;
    color: var(--forest-green);
  }

  .cart-item-row__remove {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .cart-item-row__remove-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cart-item-row__remove-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff5252;
  }

  .cart-page__sidebar {
    position: sticky;
    top: var(--spacing-xl);
    height: fit-content;
  }

  .cart-summary {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.06) 0%, rgba(255, 255, 255, 0.04) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(74, 124, 44, 0.1);
    min-width: 0;
  }

  .cart-summary__title {
    font-family: var(--font-heading);
    font-size: var(--h4-size);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xl);
  }

  .cart-summary__totals {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid rgba(74, 124, 44, 0.1);
  }

  .cart-summary__gst-note {
    display: block;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(74, 124, 44, 0.35);
    background: rgba(74, 124, 44, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage-green);
    font-size: var(--body-small);
    font-weight: 700;
    color: var(--forest-green);
    text-align: center;
  }

  .cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: var(--body-normal);
    color: var(--text);
  }

  .cart-summary__row span:first-child {
    flex-shrink: 0;
  }

  .cart-summary__row span:last-child {
    min-width: 0;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cart-summary__row--discount {
    color: var(--sage-green);
    font-weight: 600;
  }

  .cart-summary__row--shipping {
    font-size: var(--body-small);
    color: #666;
  }

  .cart-summary__free-shipping {
    color: var(--sage-green);
    font-weight: 700;
  }

  .cart-summary__row--total {
    font-size: var(--h4-size);
    font-weight: 900;
    color: var(--forest-green);
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(74, 124, 44, 0.1);
  }

  .cart-summary__discount {
    margin-bottom: var(--spacing-xl);
  }

  .cart-summary__discount-toggle {
    background: none;
    border: none;
    color: var(--sage-green);
    font-size: var(--body-small);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
  }

  .cart-summary__discount-form {
    display: none;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
  }

  .cart-summary__discount-form.active {
    display: flex;
  }

  .cart-summary__discount-input {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--body-normal);
  }

  .cart-summary__free-shipping-note {
    font-size: var(--body-small);
    color: var(--sage-green);
    font-weight: 600;
    margin: 0 0 var(--spacing-md) 0;
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    border: 2px solid rgba(74, 124, 44, 0.35);
    border-radius: var(--radius-md);
    background: rgba(74, 124, 44, 0.08);
  }

  .cart-summary__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }

  .cart-summary__checkout {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .cart-summary__continue {
    text-align: center;
    color: var(--sage-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .cart-summary__continue:hover {
    color: var(--forest-green);
    text-decoration: underline;
  }

  .cart-summary__trust {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(74, 124, 44, 0.1);
  }

  .trust-badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--body-small);
    color: var(--forest-green);
  }

  .trust-badge-item svg {
    flex-shrink: 0;
    color: var(--sage-green);
  }

  .cart-page__recommended {
    margin-top: var(--spacing-5xl);
    padding-top: var(--spacing-5xl);
    border-top: 2px solid rgba(74, 124, 44, 0.1);
  }

  .cart-page__recommended-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: var(--spacing-3xl);
    text-align: center;
    padding: 10px;
  }

  .cart-page__recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
  }

  .cart-page__empty {
    text-align: center;
    padding: var(--spacing-5xl) var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
  }

  .cart-page__empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-2xl);
    color: rgba(74, 124, 44, 0.2);
  }

  .cart-page__empty-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
  }

  .cart-page__empty-text {
    font-size: var(--body-large);
    color: #666;
    margin-bottom: var(--spacing-2xl);
  }

  @media (max-width: 968px) {
    .cart-page {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .cart-page__content {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
    }

    .cart-page__sidebar {
      position: relative;
      top: 0;
      width: 100%;
      min-width: 0;
    }

    .cart-summary {
      width: 100%;
      padding: var(--spacing-xl);
    }

    .cart-item-row {
      grid-template-columns: 100px 1fr;
      gap: var(--spacing-md);
    }

    .cart-item-row__quantity,
    .cart-item-row__total,
    .cart-item-row__remove {
      grid-column: 1 / -1;
    }

    .cart-item-row__quantity-controls {
      max-width: 150px;
    }

    .cart-page__recommended-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .cart-page {
      padding: var(--spacing-xl) var(--container-padding);
    }

    .cart-page__container {
      padding-left: 0;
      padding-right: 0;
    }

    .cart-page__header {
      margin-bottom: var(--spacing-2xl);
    }

    .cart-page__title {
      font-size: clamp(28px, 7vw, 36px);
    }

    .cart-item-row {
      grid-template-columns: 72px 1fr;
      padding: var(--spacing-md);
      gap: var(--spacing-sm);
    }

    .cart-item-row__image {
      width: 72px;
      height: 72px;
    }

    .cart-item-row__title {
      font-size: var(--body-large);
    }

    .cart-summary {
      padding: var(--spacing-lg);
    }

    .cart-summary__title {
      font-size: var(--h5-size);
      margin-bottom: var(--spacing-md);
    }

    .cart-summary__totals {
      gap: var(--spacing-sm);
      margin-bottom: var(--spacing-md);
      padding-bottom: var(--spacing-md);
    }

    .cart-summary__row {
      font-size: var(--body-small);
    }

    .cart-summary__row--total {
      font-size: var(--body-large);
    }

    .cart-summary__actions {
      gap: var(--spacing-sm);
    }

    .cart-summary__checkout,
    .cart-summary__continue {
      width: 100%;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--spacing-sm) var(--spacing-md);
    }

    .cart-page__recommended-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection-product-grid (INDEX:8) */
.collection-product-grid {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: var(--white);
    box-sizing: border-box;
  }

  .collection-product-grid__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .collection-product-grid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    width: 100%;
    box-sizing: border-box;
  }

  .collection-product-grid__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: var(--spacing-5xl);
  }

  .empty-state {
    text-align: center;
    max-width: 600px;
  }

  .empty-state__icon {
    width: 120px;
    height: 120px;
    color: rgba(74, 124, 44, 0.2);
    margin: 0 auto var(--spacing-2xl);
  }

  .empty-state__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
  }

  .empty-state__message {
    font-size: var(--body-large);
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
  }

  /* Tablet Optimization */
  @media (min-width: 769px) and (max-width: 1024px) {
    .collection-product-grid__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-xl);
    }
  }

  /* Tablet breakpoint (max-width: 968px) */
  @media (max-width: 968px) {
    .collection-product-grid {
      padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .collection-product-grid__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-xl);
    }
  }

  /* Mobile breakpoint (max-width: 768px) */
  @media (max-width: 768px) {
    .collection-product-grid {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .collection-product-grid__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
    }
  }

  /* Small mobile breakpoint (max-width: 480px) */
  @media (max-width: 480px) {
    .collection-product-grid {
      padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .collection-product-grid__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-sm);
    }
  }

  /* Extra small screens - single column for better readability */
  @media (max-width: 360px) {
    .collection-product-grid__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }
  }
/* END_SECTION:collection-product-grid */

/* START_SECTION:collection-toolbar (INDEX:9) */
.collection-toolbar {
    width: 100%;
    max-width: 100%;
    padding: 20px var(--spacing-lg);
    background: var(--white);
    border-bottom: 1px solid rgba(74, 124, 44, 0.1);
    box-sizing: border-box;
  }

  .collection-toolbar__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .collection-toolbar__results {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 15px;
    color: rgba(26, 26, 26, 0.65);
  }

  .results-text {
    font-weight: 400;
  }

  .results-count {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--forest-green);
    line-height: 1;
  }

  .collection-toolbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .toolbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .toolbar-label {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.6);
    white-space: nowrap;
    font-weight: 500;
  }

  .toolbar-select {
    padding: 10px 16px;
    padding-right: 40px;
    border: 1px solid rgba(74, 124, 44, 0.15);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--forest-green);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 130px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%232d5016' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
  }

  .toolbar-select:hover {
    border-color: var(--sage-green);
    background-color: rgba(74, 124, 44, 0.02);
  }

  .toolbar-select:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 44, 0.08);
  }

  @media (max-width: 768px) {
    .collection-toolbar {
      padding: 16px var(--spacing-md);
    }

    .collection-toolbar__container {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .collection-toolbar__results {
      font-size: 14px;
    }

    .results-count {
      font-size: 20px;
    }

    .collection-toolbar__right {
      width: 100%;
      flex-wrap: wrap;
      gap: 16px;
    }

    .toolbar-item {
      flex: 1;
      min-width: 140px;
    }

    .toolbar-select {
      width: 100%;
      min-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .collection-toolbar {
      padding: 12px var(--container-padding);
    }

    .collection-toolbar__right {
      flex-direction: column;
    }

    .toolbar-item {
      min-width: 100%;
      width: 100%;
    }

    .toolbar-select {
      min-height: var(--touch-target-min);
    }
  }
/* END_SECTION:collection-toolbar */

/* START_SECTION:collection (INDEX:10) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:11) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:12) */
.contact-form-section {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.3) 50%, var(--white) 100%);
    box-sizing: border-box;
  }

  .contact-form-section__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-form-section__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .contact-form-section__description {
    text-align: center;
    font-size: var(--body-large);
    color: var(--text);
    margin-bottom: var(--spacing-4xl);
    line-height: 1.7;
  }

  .contact-form {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    border: 2px solid rgba(74, 124, 44, 0.1);
  }

  .contact-form__message {
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-size: var(--body-normal);
  }

  .contact-form__message--success {
    background: rgba(74, 124, 44, 0.1);
    border: 2px solid var(--sage-green);
    color: var(--forest-green);
  }

  .contact-form__message--error {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff5252;
    color: #d32f2f;
  }

  .contact-form__message ul {
    margin: var(--spacing-sm) 0 0 0;
    padding-left: var(--spacing-lg);
  }

  .contact-form__message li {
    margin-bottom: var(--spacing-xs);
  }

  .contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .contact-form__label {
    font-weight: 600;
    color: var(--forest-green);
    font-size: var(--body-normal);
  }

  .contact-form__required {
    color: #ff5252;
  }

  .contact-form__input,
  .contact-form__select,
  .contact-form__textarea {
    padding: var(--spacing-md);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--body-normal);
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form__input:focus,
  .contact-form__select:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 44, 0.1);
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-body);
  }

  .contact-form__submit {
    margin-top: var(--spacing-md);
    text-align: center;
  }

  .contact-form__submit .btn {
    min-width: 200px;
  }

  @media (max-width: 768px) {
    .contact-form {
      padding: var(--spacing-xl) var(--container-padding);
    }

    .contact-form__row {
      grid-template-columns: 1fr;
    }

    .contact-form__submit .btn {
      min-width: 0;
      width: 100%;
      min-height: var(--touch-target-min);
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:contact-info (INDEX:13) */
.contact-info {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-sizing: border-box;
  }

  .contact-info__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-info__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
  }

  .contact-info-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    border-top: 4px solid var(--sage-green);
    text-align: center;
    transition: all 0.4s ease;
  }

  .contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
  }

  .contact-info-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: var(--radius-full);
    color: var(--forest-green);
  }

  .contact-info-card__title {
    font-family: var(--font-heading);
    font-size: var(--h4-size);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
  }

  .contact-info-card__content {
    font-size: var(--body-normal);
    line-height: 1.7;
    color: var(--text);
  }

  .contact-info-card__link {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .contact-info-card__link:hover {
    color: var(--forest-green);
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .contact-info {
      padding: var(--spacing-3xl) var(--container-padding);
    }

    .contact-info__title {
      margin-bottom: var(--spacing-2xl);
      padding: 0;
    }

    .contact-info__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-2xl);
    }

    .contact-info-card {
      padding: var(--spacing-xl);
    }
  }

  @media (max-width: 480px) {
    .contact-info {
      padding: var(--spacing-2xl) var(--container-padding);
    }

    .contact-info-card {
      padding: var(--spacing-lg);
    }
  }
/* END_SECTION:contact-info */

/* START_SECTION:custom-section (INDEX:14) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:15) */
:root {
    --footer-bg: #1a1f1a;
    --footer-text: rgba(255, 255, 255, 0.9);
    --footer-text-muted: rgba(255, 255, 255, 0.75);
    --footer-cta-bg: #2d3d2d;
    --footer-disclaimer-bg: #222a22;
    --footer-disclaimer-border: rgba(255, 255, 255, 0.25);
  }

  /* CTA Bar */
  .footer-cta {
    position: relative;
    padding: var(--spacing-2xl) var(--container-padding);
    background: var(--footer-cta-bg);
    overflow: hidden;
  }

  .footer-cta__bg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(0, 0, 0, 0.03) 20px,
      rgba(0, 0, 0, 0.03) 40px
    );
    pointer-events: none;
  }

  .footer-cta__inner {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
  }

  .footer-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 var(--spacing-sm);
  }

  .footer-cta__subtitle {
    font-size: var(--body-normal);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--spacing-lg);
  }

  .footer-cta__btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--body-normal);
    font-weight: 600;
    color: var(--white);
    background: var(--sage-green);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .footer-cta__btn:hover {
    background: #5a9340;
    transform: translateY(-2px);
  }

  .footer-cta__trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    font-size: var(--body-small);
    color: rgba(255, 255, 255, 0.85);
  }

  .footer-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  /* Main footer */
  .site-footer {
    margin-top: 0;
    padding: 0;
    background: var(--footer-bg);
    color: var(--footer-text);
  }

  .footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--container-padding) var(--spacing-lg);
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer__col-title {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 var(--spacing-md);
    letter-spacing: 0.02em;
  }

  .footer__about-text {
    font-size: var(--body-small);
    line-height: 1.65;
    color: var(--footer-text-muted);
    margin: 0;
  }

  .footer__list,
  .footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer__list li {
    margin-bottom: var(--spacing-xs);
  }

  .footer__list a {
    font-size: var(--body-small);
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer__list a:hover {
    color: var(--footer-text);
  }

  .footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .footer__contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: var(--body-small);
    color: var(--footer-text-muted);
  }

  .footer__contact-row a {
    color: var(--footer-text-muted);
    text-decoration: none;
  }

  .footer__contact-row a:hover {
    color: var(--footer-text);
  }

  .footer__contact-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
  }

  .footer__contact-icon--email {
    background: var(--sage-green);
    color: var(--white);
  }

  .footer__contact-icon--location {
    background: var(--white);
    color: var(--forest-green);
  }

  .footer__contact-icon--clock {
    background: var(--sage-green);
    color: var(--white);
  }

  .footer__contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .footer__social {
    margin-top: var(--spacing-lg);
    display: block;
  }

  .footer__social-label {
    display: block;
    font-size: var(--body-small);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-sm);
  }

  .footer__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
  }

  .footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }

  .footer__social-link:hover {
    background: var(--sage-green);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .footer__social-link svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
  }

  .footer__legal-list {
    margin: 0;
    padding: 0;
    font-size: var(--body-small);
    color: var(--footer-text-muted);
  }

  .footer__legal-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xs) var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
  }

  .footer__legal-row dt {
    margin: 0;
    font-weight: 500;
    color: var(--footer-text);
  }

  .footer__legal-row dd {
    margin: 0;
  }

  /* Disclaimer */
  .footer__disclaimer {
    margin: 0 calc(-1 * var(--container-padding));
    padding: var(--spacing-lg) var(--container-padding);
    border-top: 1px solid var(--footer-disclaimer-border);
    border-bottom: 1px solid var(--footer-disclaimer-border);
    background: var(--footer-disclaimer-bg);
  }

  .footer__disclaimer p {
    max-width: var(--container-max-width);
    margin: 0 auto;
    font-size: var(--body-xs);
    line-height: 1.6;
    color: var(--footer-text-muted);
    text-align: center;
  }

  /* Copyright */
  .footer__copyright-bar {
    padding-top: var(--spacing-lg);
    text-align: center;
  }

  .footer__copyright-text {
    font-size: var(--body-xs);
    color: var(--footer-text-muted);
    margin: 0;
  }

  .footer__copyright-text a {
    color: var(--footer-text-muted);
    text-decoration: underline;
    transition: color var(--transition-base);
  }

  .footer__copyright-text a:hover {
    color: var(--sage-green);
  }

  /* Floating action buttons */
  .footer-fab {
    position: fixed;
    right: var(--spacing-lg);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #fff;
  }

  .footer-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }

  .footer-fab--scroll {
    bottom: 80px;
    background: var(--sage-green);
  }

  .footer-fab--chat {
    bottom: var(--spacing-lg);
    background: var(--sage-green);
  }

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

  @media (max-width: 1024px) {
    .footer__grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-xl);
    }
  }

  @media (max-width: 767px) {
    .footer-container {
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
    }
    .footer__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
      padding-bottom: var(--spacing-xl);
    }
    .footer-fab {
      right: var(--spacing-md);
      width: 44px;
      height: 44px;
    }
    .footer-fab--scroll {
      bottom: 72px;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:16) */
.site-header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    transition: all var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .site-header.sticky {
    box-shadow: var(--shadow-sm);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-lg);
    margin: 0;
  }

  .header__logo {
    flex-shrink: 0;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: var(--h4-size);
    font-weight: 700;
  }

  .logo-link img {
    max-height: 50px;
    width: auto;
  }

  /* Desktop nav: visible on desktop only */
  .header__nav--desktop {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-body);
    font-size: var(--body-normal);
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

  .nav-link:hover {
    color: var(--sage-green);
  }

  .nav-link.active {
    color: var(--forest-green);
    font-weight: 600;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-md);
    right: var(--spacing-md);
    height: 2px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
  }

  .nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    margin: 0;
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
  }

  .nav-dropdown-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--body-small);
    color: var(--text);
    text-decoration: none;
    transition: background-color var(--transition-fast);
  }

  .nav-dropdown-link:hover {
    background-color: rgba(74, 124, 44, 0.05);
    color: var(--sage-green);
  }

  .nav-dropdown-link.active {
    color: var(--forest-green);
    font-weight: 600;
  }

  /* Header actions */
  .header__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
  }

  .header__account,
  .header__cart,
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .header__account:hover,
  .header__cart:hover {
    background-color: rgba(45, 80, 22, 0.05);
    color: var(--sage-green);
  }

  /* Hamburger: hidden on desktop, shown only on mobile */
  .mobile-menu-toggle {
    display: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-toggle:hover {
    background-color: rgba(45, 80, 22, 0.05);
    color: var(--sage-green);
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    pointer-events: none;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    color: var(--white);
    font-size: var(--body-xs);
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: var(--radius-full);
  }

  .mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
  }

  .mobile-menu-drawer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100%;
    height: 100dvh;
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    padding-top: env(safe-area-inset-top);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-menu-drawer.active .mobile-menu-content {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-menu-header h2 {
    margin: 0;
    font-size: var(--h3-size);
    color: var(--forest-green);
  }

  .mobile-menu-close {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: var(--spacing-sm);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-close:hover {
    background-color: rgba(74, 124, 44, 0.05);
    border-radius: var(--radius-sm);
  }

  .mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
  }

  .mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid var(--border-color);
    position: relative;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
    min-height: 44px;
    font-size: var(--body-normal);
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(74, 124, 44, 0.1);
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    color: var(--sage-green);
  }

  .mobile-nav-link.active {
    color: var(--forest-green);
    font-weight: 600;
  }

  .mobile-nav-item.has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .mobile-nav-item.has-children .mobile-nav-link {
    padding-right: 48px;
  }

  .mobile-nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: var(--spacing-sm);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 2;
  }

  .mobile-nav-item.active .mobile-nav-toggle {
    transform: translateY(-50%) rotate(90deg);
  }

  .mobile-nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 var(--spacing-md) var(--spacing-lg);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav-item.active .mobile-nav-submenu {
    max-height: 500px;
  }

  .mobile-nav-sublink {
    display: block;
    padding: var(--spacing-sm) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: var(--body-small);
    color: var(--text);
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(74, 124, 44, 0.1);
  }

  .mobile-nav-sublink:hover,
  .mobile-nav-sublink:active {
    color: var(--sage-green);
  }

  .mobile-nav-sublink.active {
    color: var(--forest-green);
    font-weight: 600;
  }

  .mobile-menu-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
  }

  /* Mobile: hide desktop nav, show hamburger */
  @media (max-width: 768px) {
    .header-container {
      height: 70px;
      padding: 0 var(--spacing-md);
    }

    .header__nav--desktop {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .header__actions {
      gap: var(--spacing-xs);
    }

    .header__account,
    .header__cart,
    .mobile-menu-toggle {
      width: 44px;
      height: 44px;
      min-width: 44px;
      min-height: 44px;
    }

    .mobile-menu-content {
      width: 85%;
      max-width: 360px;
    }

    .mobile-nav {
      padding: var(--spacing-md);
      -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-link {
      font-size: var(--body-large);
    }

    .mobile-nav-sublink {
      font-size: var(--body-normal);
    }
  }

  @media (max-width: 480px) {
    .header-container {
      height: 64px;
      padding: 0 var(--spacing-sm);
    }

    .logo-link img {
      max-height: 40px;
    }

    .mobile-menu-content {
      width: 100%;
      max-width: 100%;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:17) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-banner (INDEX:18) */
.hero-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    isolation: isolate;
  }

  .hero-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-banner__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--hero-transition-duration, 800ms) ease-in-out;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-banner__slide:not(.hero-banner__slide--empty) {
    z-index: 0;
  }

  .hero-banner__slide--active {
    opacity: 1;
    z-index: 10;
  }

  .hero-banner__slide--empty {
    display: none;
  }

  .hero-banner__slide--empty .hero-banner__slide-placeholder {
    display: none;
  }

  .hero-banner__slide-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-banner__slide-picture img,
  .hero-banner__image img,
  .hero-banner__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
  }

  .hero-banner__slide-img {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
  }

  .hero-banner__slide-img.image-error {
    opacity: 0.5;
    background: rgba(245, 245, 245, 0.8);
  }

  @keyframes fadeInImage {
    to {
      opacity: 1;
    }
  }

  .hero-banner__slide-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 124, 44, 0.05);
    color: var(--forest-green);
    font-size: 16px;
    padding: 20px;
    text-align: center;
  }

  .hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(45, 80, 22, 0.45) 0%,
      rgba(45, 80, 22, 0.35) 40%,
      rgba(74, 124, 44, 0.25) 100%
    );
    opacity: var(--overlay-opacity, 0.5);
    z-index: 2;
    overflow: hidden;
  }

  .hero-banner__overlay::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    max-width: 60vw;
    max-height: 60vh;
    background: radial-gradient(circle, rgba(74, 124, 44, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }

  .hero-banner__overlay::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -3%;
    width: 350px;
    height: 350px;
    max-width: 55vw;
    max-height: 55vh;
    background: radial-gradient(circle, rgba(74, 124, 44, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
  }

  .hero-banner__gradient-ornament {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    max-height: 20vh;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(74, 124, 44, 0.12) 100%
    );
    z-index: 2;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
  }

  .hero-banner__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: var(--spacing-xl) var(--spacing-lg);
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    box-sizing: border-box;
  }

  .hero-banner__text {
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-banner__heading {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0;
  }

  .hero-banner__heading-line {
    display: block;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-banner__subheading {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    max-width: 600px;
    width: 100%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-banner__trust-badges {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    width: 100%;
  }

  .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--radius-full);
    color: #1a3d0a;
    font-size: var(--body-small);
    font-weight: 600;
    white-space: nowrap;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .trust-badge svg {
    flex-shrink: 0;
    color: #1a3d0a;
  }

  .hero-banner__ctas {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-banner__cta-primary {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 50%, var(--forest-green) 100%);
    background-size: 200% auto;
    color: #ffffff;
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-weight: 600;
    font-size: clamp(15px, 1.4vw, 18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .hero-banner__cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .hero-banner__cta-primary:hover::before {
    left: 100%;
  }

  .hero-banner__cta-primary:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    background-position: 100% center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(74, 124, 44, 0.5);
  }

  .hero-banner__cta-primary svg {
    transition: transform var(--transition-base);
  }

  .hero-banner__cta-primary:hover svg {
    transform: translateX(4px);
  }

  .hero-banner__cta-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: var(--spacing-md) var(--spacing-2xl);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .hero-banner__cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .hero-banner__scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: #ffffff;
    font-size: var(--body-small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 4;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .hero-banner__scroll-indicator svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  }

  .hero-banner__carousel-controls {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }

  .hero-banner__carousel-dots {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .hero-banner__carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .hero-banner__carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  .hero-banner__carousel-dot--active {
    background: #ffffff;
    transform: scale(1.2);
  }

  .hero-banner__carousel-dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }

  @keyframes bounceArrow {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }

  @keyframes shimmer {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(15px, -15px) scale(1.03);
    }
  }

  @keyframes pulse-glow {
    0%, 100% {
      box-shadow: 0 8px 30px rgba(74, 124, 44, 0.5), 0 0 0 0 rgba(74, 124, 44, 0.3);
    }
    50% {
      box-shadow: 0 8px 40px rgba(74, 124, 44, 0.6), 0 0 0 10px rgba(74, 124, 44, 0);
    }
  }

  @media (max-width: 768px) {
    .hero-banner {
      height: 85vh;
      min-height: 500px;
      max-height: 700px;
    }

    .hero-banner__content {
      padding: var(--spacing-xl) var(--spacing-md);
      text-align: center;
    }

    .hero-banner__text {
      max-width: 100%;
      width: 100%;
    }

    .hero-banner__heading {
      font-size: clamp(32px, 8vw, 48px);
      margin-bottom: var(--spacing-sm);
      padding: 0;
    }

    .hero-banner__subheading {
      font-size: clamp(16px, 4vw, 20px);
      margin-bottom: var(--spacing-lg);
      line-height: 1.6;
    }

    .hero-banner__trust-badges {
      gap: var(--spacing-xs);
      margin-bottom: var(--spacing-xl);
      flex-wrap: wrap;
      justify-content: center;
    }

    .trust-badge {
      font-size: var(--body-xs);
      padding: var(--spacing-xs) var(--spacing-sm);
      min-height: 32px;
      display: flex;
      align-items: center;
    }

    .hero-banner__ctas {
      flex-direction: column;
      width: 100%;
      gap: var(--spacing-md);
    }

    .hero-banner__ctas .btn {
      width: 100%;
      min-height: 52px;
      justify-content: center;
      padding: var(--spacing-md) var(--spacing-xl);
      font-size: var(--body-large);
      font-weight: 700;
      -webkit-tap-highlight-color: transparent;
    }

    .hero-banner__cta-primary {
      box-shadow: 0 4px 15px rgba(74, 124, 44, 0.4);
    }

    .hero-banner__scroll-indicator {
      display: none;
    }

    .hero-banner__carousel-controls {
      bottom: var(--spacing-lg);
    }

    .hero-banner__overlay::before,
    .hero-banner__overlay::after {
      display: none;
    }

    .hero-banner__gradient-ornament {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .hero-banner {
      height: 80vh;
      min-height: 450px;
      max-height: 600px;
    }

    .hero-banner__content {
      padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-banner__heading {
      font-size: clamp(28px, 7vw, 40px);
      margin-bottom: var(--spacing-sm);
    }

    .hero-banner__subheading {
      font-size: clamp(14px, 3.5vw, 18px);
      margin-bottom: var(--spacing-md);
    }

    .hero-banner__ctas .btn {
      min-height: 48px;
      padding: var(--spacing-sm) var(--spacing-lg);
      font-size: var(--body-normal);
    }

    .trust-badge {
      font-size: 10px;
      padding: var(--spacing-xs);
    }
  }
/* END_SECTION:hero-banner */

/* START_SECTION:home-faq (INDEX:19) */
.home-faq {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .home-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.2), transparent);
  }

  .home-faq__container {
    max-width: var(--container-max-width, 900px);
    margin: 0 auto;
  }

  .home-faq__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--forest-green), var(--sage-green), transparent) 1;
    position: relative;
  }

  .home-faq__header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), rgba(74, 124, 44, 0.3));
    border-radius: 2px;
  }

  .home-faq__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.2);
  }

  .home-faq__icon svg {
    width: 26px;
    height: 26px;
  }

  .home-faq__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .home-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .home-faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(74, 124, 44, 0.12);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.06);
  }

  .home-faq-item:hover {
    border-color: rgba(74, 124, 44, 0.25);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.1);
  }

  .home-faq-item.active {
    border-color: rgba(74, 124, 44, 0.35);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.12);
  }

  .home-faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: background 0.3s ease;
  }

  .home-faq-item__button:hover {
    background: rgba(74, 124, 44, 0.04);
  }

  .home-faq-item__button:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: -2px;
  }

  .home-faq-item__button[aria-expanded="true"] {
    background: rgba(74, 124, 44, 0.06);
  }

  .home-faq-item__question {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--forest-green);
    line-height: 1.45;
    flex: 1;
  }

  .home-faq-item.active .home-faq-item__question {
    color: var(--sage-green);
  }

  .home-faq-item__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 124, 44, 0.1);
    border-radius: var(--radius-md);
    color: var(--forest-green);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  }

  .home-faq-item.active .home-faq-item__icon {
    background: var(--forest-green);
    color: var(--white);
    transform: rotate(180deg);
  }

  .home-faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-xl);
  }

  #home-faq .home-faq-item.active .home-faq-item__content,
  .home-faq-item.active .home-faq-item__content {
    max-height: 800px !important;
    overflow: visible !important;
    padding: 0 var(--spacing-xl) var(--spacing-lg) var(--spacing-xl);
  }

  .home-faq-item__answer {
    font-size: var(--body-normal);
    line-height: 1.7;
    color: var(--text);
    padding-top: var(--spacing-xs);
  }

  .home-faq-item__answer p {
    margin: 0 0 0.75rem 0;
  }

  .home-faq-item__answer p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    .home-faq {
      padding: var(--spacing-2xl) var(--spacing-md);
    }
    .home-faq__header {
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-xl);
      padding-bottom: var(--spacing-lg);
    }
    .home-faq__icon {
      width: 48px;
      height: 48px;
    }
    .home-faq__icon svg {
      width: 22px;
      height: 22px;
    }
    .home-faq__title {
      font-size: 1.35rem;
    }
    .home-faq-item__button {
      padding: var(--spacing-md) var(--spacing-lg);
    }
    .home-faq-item__question {
      font-size: 1rem;
    }
    .home-faq-item__content,
    .home-faq-item.active .home-faq-item__content {
      padding-left: var(--spacing-lg);
      padding-right: var(--spacing-lg);
    }
  }
/* END_SECTION:home-faq */

/* START_SECTION:lifestyle-usage (INDEX:20) */
.lifestyle-usage {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.03) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(74, 124, 44, 0.03) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
  }

  .lifestyle-usage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(74, 124, 44, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(74, 124, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .lifestyle-usage__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
  }

  .lifestyle-usage__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: flex-start;
  }

  .lifestyle-usage__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: auto;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    justify-self: center;
    width: 100%;
    max-width: 520px;
    align-self: center;
  }

  .lifestyle-usage__image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(45, 80, 22, 0.2);
  }

  .lifestyle-usage__image img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    max-width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    object-fit: contain;
    object-position: center;
  }

  .lifestyle-usage__image img.image-error {
    opacity: 0.5;
    background: rgba(245, 245, 245, 0.8);
  }

  .lifestyle-usage__image:hover img {
    transform: scale(1.05);
  }

  /* Carousel styles */
  .lifestyle-usage__carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lifestyle-usage__carousel {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lifestyle-usage__carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
  }

  .lifestyle-usage__carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .lifestyle-usage__carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    max-width: 100%;
    display: block;
    transition: opacity 0.3s ease;
    object-fit: contain;
    object-position: center;
  }

  .lifestyle-usage__carousel-slide img.image-error {
    opacity: 0.5;
    background: rgba(245, 245, 245, 0.8);
  }

  .lifestyle-usage__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }

  .lifestyle-usage__carousel-btn:hover {
    background: #fff;
    opacity: 1;
  }

  .lifestyle-usage__carousel-btn--prev {
    left: 12px;
  }

  .lifestyle-usage__carousel-btn--next {
    right: 12px;
  }

  .lifestyle-usage__carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }

  .lifestyle-usage__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .lifestyle-usage__carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
  }

  .lifestyle-usage__carousel-dot.is-active {
    background: #fff;
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .lifestyle-usage__carousel-btn {
      width: 36px;
      height: 36px;
    }

    .lifestyle-usage__carousel-btn--prev {
      left: 8px;
    }

    .lifestyle-usage__carousel-btn--next {
      right: 8px;
    }

    .lifestyle-usage__carousel-dots {
      bottom: 12px;
    }
  }

  .lifestyle-usage__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, transparent 100%);
    pointer-events: none;
  }

  .lifestyle-usage__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .lifestyle-usage__title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 0;
  }

  .lifestyle-usage__description {
    font-size: var(--body-normal);
    color: var(--text);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
  }

  .lifestyle-usage__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  .lifestyle-feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
  }

  .lifestyle-feature__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }

  .lifestyle-feature__icon svg {
    width: 100%;
    height: 100%;
    color: var(--sage-green);
  }

  .lifestyle-feature__content {
    flex: 1;
  }

  .lifestyle-feature__title {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xs);
  }

  .lifestyle-feature__description {
    font-size: var(--body-normal);
    color: var(--text);
    line-height: 1.7;
    margin: 0;
  }

  .lifestyle-usage__cta {
    align-self: flex-start;
  }

  /* Tablet: single column, image first — desktop layout unchanged above 968px */
  @media (max-width: 968px) {
    .lifestyle-usage__content {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
    }

    .lifestyle-usage__image {
      order: -1;
    }
  }

  /* Mobile: spacing, typography, and layout optimisations */
  @media (max-width: 768px) {
    .lifestyle-usage {
      padding: var(--spacing-2xl) var(--spacing-md);
      min-height: auto;
      height: auto;
    }

    .lifestyle-usage__content {
      gap: var(--spacing-xl);
    }

    .lifestyle-usage__image {
      max-height: none;
      height: auto;
      min-height: 300px;
      overflow: hidden;
    }

    .lifestyle-usage__carousel {
      height: auto;
      min-height: 300px;
      overflow: hidden;
    }

    .lifestyle-usage__carousel-track {
      height: auto;
    }

    .lifestyle-usage__carousel-slide {
      height: auto;
      min-height: 300px;
    }

    .lifestyle-usage__image img,
    .lifestyle-usage__carousel-slide img {
      max-height: none;
      height: auto;
      width: 100%;
      object-fit: contain;
      object-position: center;
    }

    .lifestyle-usage__title {
      font-size: clamp(28px, 7vw, 36px);
      line-height: 1.25;
      margin-bottom: var(--spacing-sm);
    }

    .lifestyle-usage__description {
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: var(--spacing-lg);
    }

    .lifestyle-usage__features {
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-lg);
    }

    .lifestyle-feature {
      gap: var(--spacing-md);
      align-items: flex-start;
    }

    .lifestyle-feature__icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      min-height: 44px;
    }

    .lifestyle-feature__title {
      font-size: 1rem;
      margin-bottom: 2px;
    }

    .lifestyle-feature__description {
      font-size: 16px;
      line-height: 1.6;
    }

    .lifestyle-usage__cta {
      width: 100%;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px var(--spacing-lg);
      text-align: center;
    }
  }

  /* Small phones: tighter padding, constrained image, touch-friendly */
  @media (max-width: 480px) {
    .lifestyle-usage {
      padding: var(--spacing-xl) 16px;
      min-height: auto;
      height: auto;
    }

    .lifestyle-usage__image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      max-height: none;
      height: auto;
      min-height: 280px;
    }

    .lifestyle-usage__carousel {
      overflow: hidden;
      min-height: 280px;
    }

    .lifestyle-usage__carousel-slide {
      min-height: 280px;
    }

    .lifestyle-usage__image img,
    .lifestyle-usage__carousel-slide img {
      max-height: none;
      height: auto;
      width: 100%;
      object-fit: contain;
      object-position: center;
    }

    .lifestyle-usage__title {
      font-size: clamp(26px, 6.5vw, 32px);
    }

    .lifestyle-usage__features {
      gap: var(--spacing-md);
    }

    .lifestyle-feature__icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      min-height: 40px;
    }
  }

  /* Disable image scale on carousel hover */
  .lifestyle-usage__carousel:hover .lifestyle-usage__carousel-slide img {
    transform: none;
  }

  /* Disable hover effects on touch devices to avoid sticky states */
  @media (max-width: 968px) and (hover: none) {
    .lifestyle-usage__image:hover {
      transform: none;
      box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
    }

    .lifestyle-usage__image:hover img {
      transform: none;
    }
  }
/* END_SECTION:lifestyle-usage */

/* START_SECTION:main-login (INDEX:21) */
.login-section {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-5xl);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.4) 50%, var(--white) 100%);
    box-sizing: border-box;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .login-section__container {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .login-section__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--forest-green);
    text-align: center;
    margin: 0 0 var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .login-section__subtitle {
    text-align: center;
    font-size: var(--body-normal);
    color: var(--text);
    margin: 0 0 var(--spacing-xl);
    line-height: 1.6;
  }

  .login-card {
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    border: 2px solid rgba(74, 124, 44, 0.12);
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .login-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .login-form__label {
    font-weight: 600;
    color: var(--forest-green);
    font-size: var(--body-small);
  }

  .login-form__input {
    padding: var(--spacing-md);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--body-normal);
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .login-form__input:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 44, 0.1);
  }

  .login-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
  }

  .login-form__checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--body-small);
    color: var(--text);
    cursor: pointer;
  }

  .login-form__checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--forest-green);
  }

  .login-form__forgot {
    font-size: var(--body-small);
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
  }

  .login-form__forgot:hover {
    text-decoration: underline;
    color: var(--forest-green);
  }

  .login-form__submit {
    margin-top: var(--spacing-sm);
  }

  .login-form__btn {
    width: 100%;
    justify-content: center;
  }

  .login-section__register {
    text-align: center;
    margin: var(--spacing-lg) 0 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    font-size: var(--body-normal);
    color: var(--text);
  }

  .login-section__register-link {
    color: var(--sage-green);
    font-weight: 600;
    text-decoration: none;
    margin-left: var(--spacing-xs);
  }

  .login-section__register-link:hover {
    text-decoration: underline;
    color: var(--forest-green);
  }

  .login-section__divider {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0 0;
    padding-top: var(--spacing-lg);
  }

  .login-section__divider::before,
  .login-section__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
  }

  .login-section__divider span {
    font-size: var(--body-small);
    color: var(--text);
    flex-shrink: 0;
  }

  .login-section__google-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(74, 124, 44, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 124, 44, 0.15);
  }

  .login-section__google-note p {
    margin: 0;
    font-size: var(--body-small);
    color: var(--text);
    line-height: 1.5;
  }

  .login-section__guest {
    margin-top: var(--spacing-xl);
    text-align: center;
  }
/* END_SECTION:main-login */

/* START_SECTION:newsletter (INDEX:22) */
.newsletter-cta {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--sage-green);
    color: var(--white);
  }

  .newsletter-cta__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .newsletter-cta__content {
    text-align: center;
  }

  .newsletter-cta__heading {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
  }

  .newsletter-cta__subheading {
    font-size: var(--body-large);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
  }

  .newsletter-cta__form {
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-cta__input-group {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  .newsletter-cta__input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--body-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .newsletter-cta__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .newsletter-cta__input:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
  }

  .newsletter-cta__submit {
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    color: var(--white);
    border-color: var(--sage-green);
    white-space: nowrap;
  }

  .newsletter-cta__submit:hover {
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    border-color: var(--forest-green);
  }

  .newsletter-cta__message {
    margin-top: var(--spacing-md);
    font-size: var(--body-normal);
  }

  .newsletter-cta__message--success {
    color: var(--white);
    font-weight: 600;
  }

  .newsletter-cta__message--error {
    color: rgba(255, 255, 255, 0.95);
  }

  .newsletter-cta__privacy {
    margin-top: var(--spacing-md);
    font-size: var(--body-small);
    color: rgba(255, 255, 255, 0.8);
  }

  .newsletter-cta__privacy a {
    color: var(--white);
    text-decoration: underline;
  }

  .newsletter-cta__privacy a:hover {
    color: var(--sage-green);
  }

  @media (max-width: 768px) {
    .newsletter-cta {
      padding: var(--spacing-3xl) var(--container-padding);
    }

    .newsletter-cta__input-group {
      flex-direction: column;
    }

    .newsletter-cta__submit {
      width: 100%;
      min-height: var(--touch-target-min);
    }
  }
/* END_SECTION:newsletter */

/* START_SECTION:policy-page (INDEX:26) */
.policy-page {
    padding: var(--spacing-2xl) var(--container-padding);
    max-width: var(--container-max-width);
    margin: 0 auto;
  }
  .policy-page__container {
    max-width: 720px;
    margin: 0 auto;
  }
  .policy-page__header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .policy-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 var(--spacing-sm);
  }
  .policy-page__updated {
    font-size: var(--body-small);
    color: var(--text-muted);
    margin: 0;
  }
  .policy-page__content {
    font-size: var(--body-normal);
    line-height: 1.7;
    color: var(--text);
  }
  .policy-page__content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
    margin: var(--spacing-xl) 0 var(--spacing-md);
  }
  .policy-page__content h2:first-child {
    margin-top: 0;
  }
  .policy-page__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
  }
  .policy-page__content p {
    margin: 0 0 var(--spacing-md);
  }
  .policy-page__content ul {
    margin: 0 0 var(--spacing-md);
    padding-left: 1.5em;
  }
  .policy-page__content li {
    margin-bottom: var(--spacing-xs);
  }
  .policy-page__content a {
    color: var(--sage-green);
    text-decoration: underline;
  }
  .policy-page__content a:hover {
    color: var(--forest-green);
  }
/* END_SECTION:policy-page */

/* START_SECTION:product-benefits-compact (INDEX:27) */
/* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }

  .product-benefits-compact {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-xl) var(--spacing-xl);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.5) 100%);
    box-sizing: border-box;
  }

  .product-benefits-compact__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  .benefit-card {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.8) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(74, 124, 44, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.05), transparent);
    transition: left 0.5s ease;
  }

  .benefit-card:hover::before {
    left: 100%;
  }

  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.15);
    border-color: rgba(74, 124, 44, 0.25);
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
    flex-shrink: 0;
  }

  .benefit-title {
    font-size: clamp(var(--h5-size), 1.2vw, var(--h4-size));
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--spacing-xs) 0;
    font-family: var(--font-heading);
  }

  .benefit-text {
    font-size: clamp(var(--body-small), 1vw, var(--body-normal));
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
  }

  /* Tablet breakpoint (max-width: 968px) */
  @media (max-width: 968px) {
    .product-benefits-compact {
      padding: var(--spacing-xl) var(--spacing-md);
    }

    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
    }

    .benefit-card {
      padding: var(--spacing-lg) var(--spacing-md);
    }
  }

  /* Mobile breakpoint (max-width: 768px) */
  @media (max-width: 768px) {
    .product-benefits-compact {
      padding: var(--spacing-lg) var(--spacing-sm);
      background: var(--white);
    }

    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-sm);
    }

    .benefit-card {
      padding: var(--spacing-md) var(--spacing-sm);
      border-radius: var(--radius-lg);
      border: 1.5px solid rgba(74, 124, 44, 0.15);
      box-shadow: 0 2px 12px rgba(45, 80, 22, 0.06);
      min-height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .benefit-icon {
      width: 44px;
      height: 44px;
      margin-bottom: var(--spacing-sm);
      border-radius: var(--radius-md);
      padding: var(--spacing-xs);
      background: linear-gradient(135deg, rgba(74, 124, 44, 0.12), rgba(74, 124, 44, 0.06));
    }

    .benefit-icon svg {
      color: var(--forest-green);
      width: 24px;
      height: 24px;
    }

    .benefit-title {
      font-size: var(--body-small);
      font-weight: 700;
      margin-bottom: var(--spacing-xs);
      line-height: 1.3;
    }

    .benefit-text {
      font-size: var(--body-xs);
      line-height: 1.5;
      color: rgba(26, 26, 26, 0.7);
    }
  }

  /* Small mobile breakpoint (max-width: 480px) */
  @media (max-width: 480px) {
    .product-benefits-compact {
      padding: var(--spacing-md) var(--spacing-xs);
    }

    .benefits-grid {
      gap: var(--spacing-xs);
    }

    .benefit-card {
      padding: var(--spacing-sm) var(--spacing-xs);
      min-height: 110px;
    }

    .benefit-icon {
      width: 40px;
      height: 40px;
      margin-bottom: var(--spacing-xs);
    }

    .benefit-icon svg {
      width: 20px;
      height: 20px;
    }
  }

  /* Extra small screens (max-width: 360px) */
  @media (max-width: 360px) {
    .benefit-card {
      padding: var(--spacing-sm) 8px;
      min-height: 100px;
    }

    .benefit-icon {
      width: 36px;
      height: 36px;
    }

    .benefit-icon svg {
      width: 18px;
      height: 18px;
    }

    .benefit-title {
      font-size: 13px;
    }

    .benefit-text {
      font-size: 11px;
    }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .benefit-card:hover {
      transform: none;
    }

    .benefit-card:active {
      transform: scale(0.98);
      box-shadow: 0 1px 6px rgba(45, 80, 22, 0.08);
    }
  }
/* END_SECTION:product-benefits-compact */

/* START_SECTION:product-benefits (INDEX:28) */
.product-benefits {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-xl);
    background: var(--white);
    box-sizing: border-box;
  }

  .product-benefits__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .product-benefits__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
  }

  .product-benefits__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--h2-size), 3vw, 42px);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-benefits__subtitle {
    font-size: clamp(var(--body-normal), 1.5vw, var(--body-large));
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .product-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  .product-benefit {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .product-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 124, 44, 0.12);
    border-color: var(--sage-green);
  }

  .product-benefit:hover::before {
    transform: scaleX(1);
  }

  .product-benefit__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1), rgba(74, 124, 44, 0.05));
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
  }

  .product-benefit__icon svg {
    width: 32px;
    height: 32px;
    color: var(--forest-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-benefit:hover .product-benefit__icon {
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    transform: scale(1.1) rotate(5deg);
  }

  .product-benefit:hover .product-benefit__icon svg {
    color: var(--white);
    transform: scale(1.1);
  }

  .product-benefit__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--h5-size), 1.5vw, var(--h4-size));
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .product-benefit:hover .product-benefit__title {
    color: var(--forest-green);
  }

  .product-benefit__description {
    font-size: clamp(var(--body-small), 1vw, 15px);
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
    margin: 0 0 var(--spacing-lg) 0;
    font-weight: 300;
    flex-grow: 1;
  }

  .product-benefit__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--forest-green);
    font-size: var(--body-small);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding: var(--spacing-xs) 0;
    min-height: var(--touch-target-min);
    transition: all 0.3s ease;
  }

  .product-benefit__cta:hover {
    gap: var(--spacing-sm);
    color: var(--sage-green);
  }

  .product-benefit__cta svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .product-benefit__cta:hover svg {
    transform: translateX(4px);
  }

  /* Tablet breakpoint (768px - 968px) */
  @media (max-width: 968px) {
    .product-benefits {
      padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .product-benefits__header {
      margin-bottom: var(--spacing-2xl);
    }

    .product-benefits__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-lg);
    }

    .product-benefit {
      padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .product-benefit__icon {
      width: 64px;
      height: 64px;
      margin-bottom: var(--spacing-lg);
    }
  }

  /* Mobile breakpoint (max-width: 768px) */
  @media (max-width: 768px) {
    .product-benefits {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .product-benefits__header {
      margin-bottom: var(--spacing-xl);
    }

    .product-benefits__title {
      margin-bottom: var(--spacing-md);
    }

    .product-benefits__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .product-benefit {
      padding: var(--spacing-xl) var(--spacing-md);
    }

    .product-benefit__icon {
      width: 56px;
      height: 56px;
      margin-bottom: var(--spacing-md);
    }

    .product-benefit__icon svg {
      width: 28px;
      height: 28px;
    }
  }

  /* Small mobile breakpoint (max-width: 480px) */
  @media (max-width: 480px) {
    .product-benefits {
      padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .product-benefit {
      padding: var(--spacing-lg) var(--spacing-sm);
    }

    .product-benefit__icon {
      width: 48px;
      height: 48px;
      margin-bottom: var(--spacing-sm);
    }

    .product-benefit__icon svg {
      width: 24px;
      height: 24px;
    }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .product-benefit:hover {
      transform: none;
    }

    .product-benefit:active {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(74, 124, 44, 0.15);
    }
  }
/* END_SECTION:product-benefits */

/* START_SECTION:product-faq (INDEX:29) */
.product-faq {
    width: 100%;
    max-width: 100%;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(74, 124, 44, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .product-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green), var(--white));
    opacity: 0.3;
  }

  .product-faq__container {
    max-width: 900px;
    margin: 0 auto;
  }

  .product-faq__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--forest-green), var(--sage-green), transparent) 1;
    position: relative;
  }

  .product-faq__header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), rgba(74, 124, 44, 0.3));
    border-radius: 2px;
  }

  .product-faq__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    border-radius: 18px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
      0 8px 20px rgba(45, 80, 22, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .product-faq__icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .product-faq__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 16px;
    border: 2px solid rgba(74, 124, 44, 0.12);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 4px 12px rgba(45, 80, 22, 0.06),
      0 2px 4px rgba(0, 0, 0, 0.04);
  }

  .faq-item:hover {
    border-color: rgba(74, 124, 44, 0.25);
    box-shadow: 
      0 8px 24px rgba(45, 80, 22, 0.12),
      0 4px 8px rgba(0, 0, 0, 0.06);
  }

  .faq-item.active {
    border-color: rgba(74, 124, 44, 0.35);
    box-shadow: 
      0 12px 32px rgba(45, 80, 22, 0.15),
      0 6px 12px rgba(0, 0, 0, 0.08);
  }

  .faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .faq-item__button:hover {
    background: rgba(74, 124, 44, 0.03);
  }

  .faq-item__button:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: -2px;
  }

  .faq-item__button[aria-expanded="true"] {
    background: rgba(74, 124, 44, 0.05);
  }

  .faq-item__question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--forest-green);
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
  }

  .faq-item.active .faq-item__question {
    color: var(--sage-green);
  }

  .faq-item__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
    border-radius: 8px;
    color: var(--forest-green);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item__icon svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.active .faq-item__icon {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: var(--white);
    transform: rotate(180deg);
  }

  .faq-item.active .faq-item__icon svg {
    transform: rotate(180deg);
  }

  .faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 28px;
  }

  .faq-item.active .faq-item__content {
    max-height: 1000px;
    padding: 0 28px 24px 28px;
  }

  .faq-item__answer {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.85);
    padding-top: 8px;
  }

  .faq-item__answer p {
    margin: 0 0 12px 0;
  }

  .faq-item__answer p:last-child {
    margin-bottom: 0;
  }

  /* Responsive Design */
  @media (max-width: 968px) {
    .product-faq {
      padding: 40px 20px;
    }

    .product-faq__header {
      margin-bottom: 32px;
      padding-bottom: 24px;
      gap: 16px;
    }

    .product-faq__icon {
      width: 56px;
      height: 56px;
    }

    .product-faq__icon svg {
      width: 24px;
      height: 24px;
    }

    .product-faq__title {
      font-size: 28px;
    }

    .faq-item__button {
      padding: 20px 24px;
    }

    .faq-item__question {
      font-size: 17px;
    }

    .faq-item__content {
      padding: 0 24px;
    }

    .faq-item.active .faq-item__content {
      padding: 0 24px 20px 24px;
    }
  }

  @media (max-width: 768px) {
    .product-faq {
      padding: 30px 16px;
    }

    .product-faq__header {
      gap: 14px;
      margin-bottom: 28px;
      padding-bottom: 20px;
    }

    .product-faq__icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
    }

    .product-faq__icon svg {
      width: 22px;
      height: 22px;
    }

    .product-faq__title {
      font-size: 26px;
    }

    .product-faq__accordion {
      gap: 12px;
    }

    .faq-item {
      border-radius: 14px;
    }

    .faq-item__button {
      padding: 18px 20px;
      gap: 16px;
    }

    .faq-item__question {
      font-size: 16px;
    }

    .faq-item__icon {
      width: 28px;
      height: 28px;
    }

    .faq-item__content {
      padding: 0 20px;
    }

    .faq-item.active .faq-item__content {
      padding: 0 20px 18px 20px;
    }

    .faq-item__answer {
      font-size: 15px;
      line-height: 1.7;
    }
  }

  @media (max-width: 480px) {
    .product-faq {
      padding: 24px 16px;
    }

    .product-faq__header {
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 18px;
    }

    .product-faq__icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
    }

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

    .product-faq__title {
      font-size: 22px;
    }

    .product-faq__accordion {
      gap: 10px;
    }

    .faq-item {
      border-radius: 12px;
    }

    .faq-item__button {
      padding: 16px 18px;
      gap: 12px;
    }

    .faq-item__question {
      font-size: 15px;
    }

    .faq-item__icon {
      width: 26px;
      height: 26px;
    }

    .faq-item__content {
      padding: 0 18px;
    }

    .faq-item.active .faq-item__content {
      padding: 0 18px 16px 18px;
    }

    .faq-item__answer {
      font-size: 14px;
    }
  }
/* END_SECTION:product-faq */

/* START_SECTION:product-filters (INDEX:30) */
.product-filters {
    position: relative;
  }

  @media (min-width: 769px) {
    .product-filters {
      position: sticky;
      top: var(--spacing-lg);
      align-self: flex-start;
      padding: var(--spacing-lg);
      background-color: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
    }
  }

  .product-filters__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }

  .product-filters__toggle {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    min-height: 44px;
    background-color: var(--white);
    border: 2px solid var(--sage-green);
    border-radius: var(--radius-md);
    color: var(--forest-green);
    font-weight: 600;
    font-size: var(--body-normal);
    cursor: pointer;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
  }

  .product-filters__toggle:active {
    background-color: var(--sage-green);
    color: var(--white);
    transform: scale(0.98);
  }

  .filter-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 var(--spacing-xs);
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    color: var(--white);
    font-size: var(--body-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
  }

  .product-filters__active {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    flex: 1;
  }

  .active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: rgba(74, 124, 44, 0.1);
    color: var(--sage-green);
    font-size: var(--body-small);
    font-weight: 500;
    border-radius: var(--radius-full);
  }

  .remove-filter {
    display: flex;
    align-items: center;
    color: var(--sage-green);
    text-decoration: none;
    transition: color var(--transition-fast);
  }

  .remove-filter:hover {
    color: var(--forest-green);
  }

  .clear-all-filters {
    font-size: var(--body-small);
    color: var(--sage-green);
    text-decoration: underline;
  }

  .clear-all-filters:hover {
    color: var(--forest-green);
  }

  .product-filters__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-modal);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .product-filters__sidebar.active {
    transform: translateX(0);
  }

  .product-filters__content {
    padding: var(--spacing-lg);
  }

  .product-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
  }

  .product-filters__title {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: 700;
    color: var(--forest-green);
    margin: 0;
  }

  .product-filters__close {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: var(--spacing-sm);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
  }

  .product-filters__close:active {
    background-color: rgba(74, 124, 44, 0.05);
    border-radius: var(--radius-sm);
  }

  .filter-group {
    margin-bottom: var(--spacing-2xl);
  }

  .filter-group__title {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
  }

  .filter-group__options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm) 0;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(74, 124, 44, 0.1);
    transition: background-color 0.2s ease;
    border-radius: var(--radius-sm);
  }

  .filter-checkbox:active {
    background-color: rgba(74, 124, 44, 0.05);
  }

  .filter-checkbox input[type="checkbox"] {
    display: none;
  }

  .checkmark {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-base);
  }

  .filter-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: var(--sage-green);
    border-color: var(--sage-green);
  }

  .filter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .filter-label {
    font-size: var(--body-normal);
    color: var(--text);
    user-select: none;
  }

  .filter-checkbox:hover .filter-label {
    color: var(--sage-green);
  }

  .product-filters__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
  }

  .product-filters__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .product-filters__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Desktop Styles */
  @media (min-width: 769px) {
    .product-filters {
      position: sticky;
      top: var(--spacing-lg);
      align-self: flex-start;
    }

    .product-filters__mobile-header {
      display: none;
    }

    .product-filters__sidebar {
      position: static;
      width: 100%;
      height: auto;
      transform: none;
      box-shadow: none;
      border: none;
    }

    .product-filters__sidebar.active {
      transform: none;
    }

    .product-filters__close {
      display: none;
    }

    .product-filters__overlay {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    .product-filters__toggle {
      display: flex;
    }

    .product-filters__close {
      display: block;
    }

    .product-filters__overlay {
      display: block;
    }
  }
/* END_SECTION:product-filters */

/* START_SECTION:product-grid (INDEX:31) */
/* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .product-grid-section.fade-in-up {
      opacity: 1;
      animation: none;
    }
  }

  .product-grid-section {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.3) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .product-grid-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .product-grid-section__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.3;
    padding: 0;
  }


  .product-grid-section__description {
    text-align: center;
    font-size: var(--body-large);
    font-weight: 400;
    color: rgba(26, 26, 26, 0.7);
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-2xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .product-grid-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
  }

  @media (min-width: 1400px) {
    .product-grid-section__grid {
      gap: var(--spacing-2xl);
    }
  }

  .product-grid-section__footer {
    text-align: center;
    margin-top: var(--spacing-xl);
  }

  .product-grid-section__footer .btn {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-3xl);
    font-weight: 600;
    font-size: var(--body-large);
    box-shadow: 0 8px 25px rgba(74, 124, 44, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .product-grid-section__footer .btn:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 124, 44, 0.4);
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
  }

  .product-grid-section__empty {
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-lg);
    color: #999;
  }

  @media (max-width: 1024px) {
    .product-grid-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
    }
  }

  @media (max-width: 768px) {
    .product-grid-section {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .product-grid-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
    }
  }

  @media (max-width: 480px) {
    .product-grid-section {
      padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .product-grid-section__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-sm);
    }

    /* Carousel: one card = 100vw (same as 768px) */
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide {
      flex: 0 0 100vw;
      width: 100vw;
      min-width: 100vw;
      max-width: 100vw;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-track {
      gap: 0;
      padding-left: 0;
      padding-right: 0;
    }
  }

  /* When layout is Carousel: grid on desktop (769px+), carousel on mobile */
  .product-grid-section__grid--desktop {
    display: none;
  }

  .product-grid-section__carousel-wrap--mobile {
    display: block;
  }

  @media (min-width: 769px) {
    .product-grid-section__grid--desktop {
      display: grid;
    }

    .product-grid-section__carousel-wrap--mobile {
      display: none !important;
    }
  }

  /* Carousel layout - native scroll (mobile only) */
  .product-grid-section__carousel-wrap {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-lg);
    overflow: hidden;
    box-sizing: border-box;
  }

  .product-grid-section__carousel-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    margin: 0 calc(-1 * var(--spacing-lg));
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
    min-height: 420px;
  }

  /* Mobile: carousel full viewport width so we can center cards with 50vw */
  @media (max-width: 768px) {
    .product-grid-section__carousel-wrap--mobile {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding-left: 0;
      padding-right: 0;
      box-sizing: border-box;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-scroll {
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
    }
  }

  @media (min-width: 769px) {
    .product-grid-section__carousel-scroll {
      min-height: 0;
    }
  }

  .product-grid-section__carousel-scroll::-webkit-scrollbar {
    display: none;
  }

  .product-grid-section__carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(74, 124, 44, 0.2);
    background: var(--white);
    color: var(--forest-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .product-grid-section__carousel-arrow:hover {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(74, 124, 44, 0.35);
  }

  .product-grid-section__carousel-arrow--prev {
    left: 0;
  }

  .product-grid-section__carousel-arrow--next {
    right: 0;
  }

  @media (max-width: 768px) {
    .product-grid-section__carousel-arrow {
      width: 40px;
      height: 40px;
    }

    .product-grid-section__carousel-arrow--prev {
      left: -4px;
    }

    .product-grid-section__carousel-arrow--next {
      right: -4px;
    }
  }

  .product-grid-section__carousel-track {
    display: flex;
    align-items: stretch;
    gap: 28px;
    width: max-content;
    min-width: 100%;
    box-sizing: border-box;
  }

  /* Mobile: one card at a time – slide = 100vw, no gap or padding so only one card visible */
  @media (max-width: 768px) {
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-track {
      gap: 0;
      padding-left: 0;
      padding-right: 0;
    }
  }

  .product-grid-section__carousel-slide {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: calc(100vw - 80px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Mobile: one card only – each slide = 100vw */
  @media (max-width: 768px) {
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide {
      flex: 0 0 100vw;
      width: 100vw;
      min-width: 100vw;
      max-width: 100vw;
    }
  }

  .product-grid-section__carousel-slide .product-card {
    width: 100%;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-grid-section__carousel-slide .product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-grid-section__carousel-slide .product-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-grid-section__carousel-slide .product-card__form {
    margin-top: auto;
  }

  .product-grid-section__carousel-slide .product-card:hover {
    transform: none;
  }

  /* Mobile carousel: professional full-width card – balanced ratio, clear hierarchy */
  @media (max-width: 768px) {
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card {
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
      border-color: rgba(74, 124, 44, 0.15);
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__image-wrapper {
      padding-top: 78%;
      background: linear-gradient(180deg, #f5f7f5 0%, #eef0ee 100%);
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__image {
      object-fit: cover;
      object-position: center;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__badge {
      top: 12px;
      left: 12px;
      padding: 6px 12px;
      font-size: 11px;
      border-radius: 8px;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__info {
      padding: 18px 20px 22px;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__title {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 8px;
      -webkit-line-clamp: 2;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__tags {
      margin-bottom: 10px;
      gap: 6px;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__tag {
      padding: 4px 8px;
      font-size: 10px;
      border-radius: 6px;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__price-row {
      gap: 8px;
      align-items: baseline;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__price--current {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__price--compare {
      font-size: 13px;
      color: rgba(26, 26, 26, 0.45);
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__price {
      margin-bottom: 16px;
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__price--gst {
      font-size: 11px;
      color: rgba(26, 26, 26, 0.55);
    }
    .product-grid-section__carousel-wrap--mobile .product-grid-section__carousel-slide .product-card__add-to-cart {
      min-height: 48px;
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 10px;
      letter-spacing: 0.04em;
      box-shadow: 0 2px 10px rgba(45, 80, 22, 0.25);
    }
  }

  @media (min-width: 769px) {
    .product-grid-section__carousel-slide {
      flex: 0 0 300px;
      width: 300px;
      min-width: 300px;
    }
  }

  @media (min-width: 1025px) {
    .product-grid-section__carousel-slide {
      flex: 0 0 320px;
      width: 320px;
      min-width: 320px;
    }
  }
/* END_SECTION:product-grid */

/* START_SECTION:product-guarantee (INDEX:32) */
.product-guarantee {
    width: 100%;
    max-width: 100%;
    padding: 80px var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.06) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-sizing: border-box;
  }

  .product-guarantee__container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .product-guarantee__content {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .guarantee-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 124, 44, 0.1);
    border-radius: 50%;
    color: var(--forest-green);
  }

  .guarantee-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .guarantee-description {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
  }

  .guarantee-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(74, 124, 44, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .guarantee-feature:hover {
    background: rgba(74, 124, 44, 0.06);
    transform: translateY(-2px);
  }

  .guarantee-feature svg {
    flex-shrink: 0;
    color: var(--forest-green);
    margin-top: 2px;
  }

  .guarantee-feature div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .guarantee-feature strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
  }

  .guarantee-feature span {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
  }

  .guarantee-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--forest-green);
    color: var(--white);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .guarantee-cta:hover {
    color: var(--white);
    background: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 44, 0.3);
  }

  .guarantee-cta svg {
    transition: transform 0.3s ease;
  }

  .guarantee-cta:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 768px) {
    .product-guarantee {
      padding: 60px var(--spacing-md);
    }

    .product-guarantee__content {
      padding: 40px 24px;
    }

    .guarantee-title {
      font-size: 28px;
    }

    .guarantee-features {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .guarantee-feature {
      padding: 20px;
    }
  }
/* END_SECTION:product-guarantee */

/* START_SECTION:product-how-to-use-compact (INDEX:33) */
/* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }

  .product-how-to-use-compact {
    width: 100%;
    max-width: 100%;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(74, 124, 44, 0.03) 100%);
    box-sizing: border-box;
  }

  .product-how-to-use-compact__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .how-to-use-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .usage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(74, 124, 44, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .usage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.05), transparent);
    transition: left 0.5s ease;
  }

  .usage-item:hover::before {
    left: 100%;
  }

  .usage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.12);
    border-color: rgba(74, 124, 44, 0.2);
  }

  .usage-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-heading);
  }

  .usage-content {
    flex: 1;
  }

  .usage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
  }

  .usage-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
  }

  /* Mobile only – high-conversion: compact, scannable, thumb-friendly */
  @media (max-width: 968px) {
    .product-how-to-use-compact {
      padding: 28px 20px;
    }

    .how-to-use-title {
      font-size: 26px;
      margin-bottom: 20px;
    }

    .usage-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .usage-item {
      padding: 18px 20px;
      gap: 16px;
    }

    .usage-number {
      width: 44px;
      height: 44px;
      font-size: 18px;
    }

    .usage-title {
      font-size: 17px;
    }

    .usage-text {
      font-size: 14px;
      line-height: 1.55;
    }
  }

  @media (max-width: 480px) {
    .product-how-to-use-compact {
      padding: 20px 16px;
    }

    .how-to-use-title {
      font-size: 22px;
      margin-bottom: 16px;
    }

    .usage-grid {
      gap: 10px;
    }

    .usage-item {
      padding: 14px 16px;
      gap: 14px;
      flex-direction: row;
      align-items: flex-start;
    }

    .usage-item:hover {
      transform: none; /* Avoid accidental taps on mobile */
    }

    .usage-number {
      width: 40px;
      height: 40px;
      min-width: 40px;
      font-size: 16px;
    }

    .usage-content {
      min-width: 0;
    }

    .usage-title {
      font-size: 15px;
      margin-bottom: 4px;
    }

    .usage-text {
      font-size: 13px;
      line-height: 1.5;
    }
  }
/* END_SECTION:product-how-to-use-compact */

/* START_SECTION:product-image-banner (INDEX:34) */
.product-image-banner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .product-image-banner__container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .product-image-banner__image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .product-image-banner__link {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .product-image-banner__link:hover {
    opacity: 0.95;
  }

  .product-image-banner__picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-image-banner__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
  }

  .product-image-banner__image.image-error {
    opacity: 0.5;
    background: rgba(245, 245, 245, 0.8);
  }

  .product-image-banner__placeholder {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background: rgba(45, 80, 22, 0.05);
    border: 2px dashed rgba(74, 124, 44, 0.3);
    border-radius: 12px;
    color: var(--forest-green);
    font-size: 16px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .product-image-banner {
      padding: 0;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    .product-image-banner__container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .product-image-banner__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .product-image-banner__image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center;
    }
  }

  @media (max-width: 480px) {
    .product-image-banner {
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    .product-image-banner__image {
      width: 100%;
      max-width: 100%;
    }
  }
/* END_SECTION:product-image-banner */

/* START_SECTION:product-image-gallery (INDEX:35) */
.product-image-gallery {
    width: 100%;
    max-width: 100%;
    padding: 40px 40px;
    background: var(--white);
    box-sizing: border-box;
  }

  .product-image-gallery__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    background: var(--bg);
  }

  .gallery-item--large {
    grid-row: span 2;
    grid-column: span 2;
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.05);
  }

  /* Responsive */
  @media (max-width: 968px) {
    .product-image-gallery {
      padding: 30px 20px;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .gallery-item--large {
      grid-row: span 1;
      grid-column: span 1;
    }
  }

  @media (max-width: 480px) {
    .product-image-gallery {
      padding: 20px 16px;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }
/* END_SECTION:product-image-gallery */

/* START_SECTION:product-ingredients-nutrition (INDEX:36) */
.product-ingredients-nutrition {
    width: 100%;
    max-width: 100%;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(74, 124, 44, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .product-ingredients-nutrition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green), var(--white));
    opacity: 0.3;
  }

  .product-ingredients-nutrition__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .nutrition-section {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 32px 32px;
    box-shadow: 
      0 10px 40px rgba(45, 80, 22, 0.08),
      0 4px 12px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(74, 124, 44, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .nutrition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nutrition-section:hover::before {
    transform: scaleX(1);
  }

  .nutrition-section:hover {
    box-shadow: 
      0 20px 60px rgba(45, 80, 22, 0.15),
      0 8px 24px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(74, 124, 44, 0.25);
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--forest-green), var(--sage-green), transparent) 1;
    position: relative;
  }

  .section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), rgba(74, 124, 44, 0.3));
    border-radius: 2px;
  }

  .section-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    border-radius: 18px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
      0 8px 20px rgba(45, 80, 22, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .section-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
  }

  .nutrition-section:hover .section-icon::before {
    animation: shine 1.5s ease-in-out;
  }

  @keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }

  .section-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .nutrition-section:hover .section-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
      0 12px 30px rgba(45, 80, 22, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(45, 80, 22, 0.1);
  }

  .nutrition-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
  }

  .nutrition-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
      0 4px 16px rgba(45, 80, 22, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .nutrition-table thead {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
  }

  .nutrition-table th {
    padding: 18px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }

  .nutrition-table th:first-child {
    border-top-left-radius: 12px;
  }

  .nutrition-table th:last-child {
    border-top-right-radius: 12px;
    text-align: right;
  }

  .nutrition-table th:nth-child(2) {
    text-align: center;
  }

  .nutrition-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(74, 124, 44, 0.1);
  }

  .nutrition-table tbody tr:last-child {
    border-bottom: none;
  }

  .nutrition-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.95) 100%);
    box-shadow: inset 0 0 0 2px rgba(74, 124, 44, 0.15);
  }

  .nutrition-table td {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.9);
    font-weight: 500;
  }

  .nutrition-table td:first-child {
    font-weight: 600;
    color: var(--forest-green);
  }

  .nutrition-table td:last-child {
    text-align: right;
    font-weight: 600;
  }

  .nutrition-table td:nth-child(2) {
    text-align: center;
  }

  /* Responsive Design */
  @media (max-width: 968px) {
    .product-ingredients-nutrition {
      padding: 40px 20px;
    }

    .nutrition-section {
      padding: 28px 24px;
    }

    .section-title {
      font-size: 28px;
    }

    .section-icon {
      width: 56px;
      height: 56px;
    }

    .section-icon svg {
      width: 24px;
      height: 24px;
    }

    .nutrition-table th,
    .nutrition-table td {
      padding: 14px 20px;
      font-size: 15px;
    }
  }

  @media (max-width: 768px) {
    .product-ingredients-nutrition {
      padding: 30px 16px;
    }

    .nutrition-section {
      padding: 24px 20px;
      border-radius: 20px;
    }

    .section-header {
      margin-bottom: 28px;
      padding-bottom: 24px;
      gap: 16px;
    }

    .section-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
    }

    .section-icon svg {
      width: 22px;
      height: 22px;
    }

    .section-title {
      font-size: 26px;
    }

    .nutrition-table th,
    .nutrition-table td {
      padding: 12px 16px;
      font-size: 14px;
    }

    .nutrition-table th {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .product-ingredients-nutrition {
      padding: 24px 16px;
    }

    .nutrition-section {
      padding: 20px 16px;
      border-radius: 16px;
    }

    .section-header {
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 20px;
    }

    .section-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
    }

    .section-icon svg {
      width: 20px;
      height: 20px;
    }

    .section-title {
      font-size: 22px;
    }

    .nutrition-table-wrapper {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .nutrition-table {
      min-width: 500px;
    }

    .nutrition-table th,
    .nutrition-table td {
      padding: 10px 12px;
      font-size: 13px;
    }

    .nutrition-table th {
      font-size: 12px;
      padding: 12px 14px;
    }
  }
/* END_SECTION:product-ingredients-nutrition */

/* START_SECTION:product-main (INDEX:37) */
/* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }

  /* Main Container */
  .product-hero {
    width: 100%;
    max-width: 100%;
    padding: 30px 40px;
    background: var(--white);
    box-sizing: border-box;
  }

  .product-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* Product Images */
  .product-images {
    position: sticky;
    top: 100px;
  }

  .product-image-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-image-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  /* Carousel */
  .product-image-carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: unset; /* Let slides control aspect ratio */
  }

  .product-image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    touch-action: pan-y pinch-zoom;
  }

  .product-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease-out;
    will-change: transform;
  }

  .product-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
  }

  .product-carousel-slide .product-image-main__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
  }

  .product-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s, transform 0.2s, opacity 0.2s;
  }

  .product-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.05);
  }

  .product-carousel-prev { left: 8px; }
  .product-carousel-next { right: 8px; }

  .product-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
  }

  .product-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .product-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .product-carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
  }

  .product-image-main__img.image-error {
    opacity: 0.5;
    background: rgba(245, 245, 245, 0.8);
  }

  .sticky-cart-bar__image img.image-error {
    opacity: 0.5;
    background: rgba(245, 245, 245, 0.8);
  }

  .product-badge-sale {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(74, 124, 44, 0.4);
  }

  .product-image-zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .product-image-zoom:hover {
    background: var(--white);
    transform: scale(1.1);
  }

  /* Product Info */
  .product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Trust Badges */
  .product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--forest-green);
    font-weight: 500;
  }

  .trust-badge svg {
    flex-shrink: 0;
  }

  .trust-badge--shipping {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.12) 0%, rgba(74, 124, 44, 0.06) 100%);
    color: var(--forest-green);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(74, 124, 44, 0.25);
    font-weight: 600;
  }

  /* Product Title */
  .product-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    font-family: var(--font-heading);
  }

  /* Rating Summary */
  .product-rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -8px;
  }

  .rating-stars {
    display: flex;
    gap: 4px;
    color: var(--sage-green);
  }

  .rating-text {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
  }

  .rating-link {
    color: var(--forest-green);
    text-decoration: none;
  }

  .rating-link:hover {
    text-decoration: underline;
  }

  /* Price Section */
  .product-price-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .price-original {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .price-current {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
  }

  .price-label {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 400;
  }

  .price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--forest-green);
    font-family: var(--font-heading);
  }

  .price-value--old {
    font-size: 24px;
    text-decoration: line-through;
    color: rgba(26, 26, 26, 0.4);
    font-weight: 400;
  }

  .price-value--sale {
    color: var(--sage-green);
  }

  .price-savings {
    background: rgba(74, 124, 44, 0.1);
    color: var(--sage-green);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
  }

  .price-gst {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 700;
    margin-top: 4px;
  }

  .price-gst-note {
    display: block;
    font-size: 12px;
    color: var(--forest-green);
    font-weight: 700;
    margin-top: 6px;
    padding: 6px 12px;
    background: rgba(74, 124, 44, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--sage-green);
  }

  /* Stock Alert */
  .product-stock-alert,
  .product-stock-available {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
  }

  .product-stock-alert {
    background: rgba(255, 87, 34, 0.1);
    color: var(--forest-green);
  }

  .product-stock-available {
    background: rgba(74, 124, 44, 0.1);
    color: var(--forest-green);
  }

  /* Variants */
  .product-variants {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .variant-option {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .variant-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
  }

  .variant-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .variant-option-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .variant-option-btn:hover:not(:disabled) {
    border-color: var(--sage-green);
    background: rgba(74, 124, 44, 0.05);
  }

  .variant-option-btn.active {
    border-color: var(--forest-green);
    background: var(--forest-green);
    color: var(--white);
  }

  .variant-option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .variant-unavailable {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
  }

  .variant-select-hidden {
    display: none;
  }

  /* Product Form – consistent spacing between quantity, buttons, trust message */
  .product-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Quantity */
  .product-quantity {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quantity-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
  }

  .quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quantity-btn:hover {
    background: rgba(74, 124, 44, 0.1);
  }

  .quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
  }

  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* CTA Buttons */
  .cta-button {
    width: 100%;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
  }

  .cta-button--primary {
    background: var(--forest-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(74, 124, 44, 0.3);
  }

  .cta-button--primary:hover:not(:disabled) {
    background: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 44, 0.4);
  }

  .cta-button--secondary {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
    margin-top: 8px;
  }

  .cta-button--secondary:hover {
    background: rgba(74, 124, 44, 0.05);
  }

  .cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* CTA as link (e.g. Buy on Amazon) - reset link styles so it looks like a button */
  a.cta-button {
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  a.cta-button--secondary {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
    margin-top: 8px;
  }

  a.cta-button--secondary:hover {
    background: rgba(74, 124, 44, 0.05);
    color: var(--forest-green);
  }

  .product-buy-now-blocks {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 8px;
  }

  .product-buy-now-block {
    width: 100%;
  }

  /* Make any Buy Now block (theme/app) match Add-to-Cart width */
  .product-buy-now-blocks :is(button, a, input[type="button"], input[type="submit"]) {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Trust Message */
  .product-trust-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(74, 124, 44, 0.05);
    border-radius: 8px;
    color: var(--forest-green);
  }

  .product-trust-message svg {
    flex-shrink: 0;
  }

  .product-trust-message div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
  }

  .product-trust-message strong {
    font-size: 14px;
  }

  /* Delivery Estimator - desktop (input + button in one row, styled button) */
  .delivery-estimator {
    margin: 1rem 0;
    padding: 20px;
    background: rgba(74, 124, 44, 0.06);
    border: 1px solid rgba(74, 124, 44, 0.2);
    border-radius: 12px;
  }

  .delivery-estimator__label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 12px;
  }

  .delivery-estimator__wrapper {
    display: flex;
    align-items: stretch;
    gap: 12px;
    max-width: 400px;
  }

  .delivery-estimator__input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease;
  }

  .delivery-estimator__input:focus {
    outline: none;
    border-color: var(--forest-green);
  }

  .delivery-estimator__btn {
    padding: 14px 28px;
    background: var(--forest-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(74, 124, 44, 0.25);
  }

  .delivery-estimator__btn:hover {
    background: var(--sage-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 124, 44, 0.3);
  }

  .delivery-estimator__result {
    margin-top: 12px;
    font-size: 14px;
    min-height: 1.4em;
  }

  .delivery-estimator__result.delivery-success {
    color: var(--forest-green);
    font-weight: 500;
  }

  .delivery-estimator__result.delivery-error {
    color: #c62828;
  }

  /* Product Description Section */
  .product-description-section {
    width: 100%;
    max-width: 100%;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(74, 124, 44, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%);
    box-sizing: border-box;
  }

  .product-description-section__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-description-content {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 32px 32px;
    box-shadow: 
      0 10px 40px rgba(45, 80, 22, 0.08),
      0 4px 12px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(74, 124, 44, 0.12);
  }

  .product-description-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding-bottom: 24px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--forest-green), var(--sage-green), transparent) 1;
    position: relative;
  }

  .product-description-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), rgba(74, 124, 44, 0.3));
    border-radius: 2px;
  }

  .product-description-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.9);
    font-weight: 400;
  }

  .product-description-text p {
    margin: 0 0 20px 0;
  }

  .product-description-text p:last-child {
    margin-bottom: 0;
  }

  .product-description-text h1,
  .product-description-text h2,
  .product-description-text h3,
  .product-description-text h4,
  .product-description-text h5,
  .product-description-text h6 {
    font-family: var(--font-heading);
    color: var(--forest-green);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .product-description-text h1:first-child,
  .product-description-text h2:first-child,
  .product-description-text h3:first-child {
    margin-top: 0;
  }

  .product-description-text ul,
  .product-description-text ol {
    margin: 20px 0;
    padding-left: 24px;
  }

  .product-description-text li {
    margin-bottom: 12px;
  }

  .product-description-text a {
    color: var(--forest-green);
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .product-description-text a:hover {
    color: var(--sage-green);
  }

  .product-description-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
  }

  /* Sticky Cart Bar (Mobile) */
  .sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 12px 20px;
  }

  .sticky-cart-bar__content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .sticky-cart-bar__info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }

  .sticky-cart-bar__image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
  }

  .sticky-cart-bar__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sticky-cart-bar__details {
    flex: 1;
    min-width: 0;
  }

  .sticky-cart-bar__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-cart-bar__price {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sticky-cart-bar__price .price-old {
    font-size: 12px;
    text-decoration: line-through;
    color: rgba(26, 26, 26, 0.5);
  }

  .sticky-cart-bar__price .price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--forest-green);
  }

  .sticky-cart-bar__button {
    padding: 12px 24px;
    background: var(--forest-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .sticky-cart-bar__button:hover {
    background: var(--sage-green);
  }

  /* Responsive – mobile only (desktop unchanged) */
  @media (max-width: 968px) {
    .product-hero {
      padding: 24px 20px;
      padding-bottom: 100px;
    }

    .product-hero__container {
      grid-template-columns: 1fr;
      gap: 28px; /* Tighter gap so price + CTA appear above fold */
    }

    /* Prevent main product image flowing out of screen on mobile */
    .product-images {
      position: static;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 0;
    }

    .product-image-main {
      max-width: 100%;
      box-sizing: border-box;
      margin-bottom: 0;
    }

    .product-image-carousel-wrapper {
      margin-bottom: 0;
    }

    .product-image-carousel {
      border-radius: 12px;
    }

    /* Larger carousel images on mobile - taller aspect ratio */
    .product-carousel-slide {
      aspect-ratio: 4/3; /* Taller than square for better product visibility */
      min-height: 60vh; /* Ensure images take up significant screen space */
    }

    .product-carousel-slide .product-image-main__img {
      max-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Smaller, edge-positioned arrows that don't block content */
    .product-carousel-btn {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.75);
      opacity: 0.9;
    }

    .product-carousel-btn:active {
      opacity: 1;
      background: rgba(255, 255, 255, 0.9);
    }

    .product-carousel-prev {
      left: 4px;
    }

    .product-carousel-next {
      right: 4px;
    }

    /* Smaller dots on mobile */
    .product-carousel-dots {
      bottom: 12px;
    }

    .product-carousel-dot {
      width: 6px;
      height: 6px;
    }

    .product-info {
      gap: 18px; /* Tighter for above-fold CTA */
    }

    .product-form {
      gap: 18px;
    }

    .product-title {
      font-size: 28px;
      line-height: 1.25;
    }

    .price-value {
      font-size: 26px;
    }

    .product-price-section {
      padding: 16px 0;
    }

    .sticky-cart-bar {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .sticky-cart-bar__content {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      flex-direction: row;
      align-items: center;
      gap: 12px;
    }

    .sticky-cart-bar__info {
      flex: 1;
      min-width: 0;
    }

    .sticky-cart-bar__image {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
    }

    .sticky-cart-bar__details {
      min-width: 0;
    }

    .sticky-cart-bar__title {
      font-size: 13px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .sticky-cart-bar__price .price-current {
      font-size: 15px;
    }

    .sticky-cart-bar__button {
      min-height: 48px; /* High-conversion touch target */
      padding: 12px 20px;
      flex-shrink: 0;
      font-size: 15px;
      font-weight: 600;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
      position: relative;
      z-index: 2;
    }

    .product-description-section {
      padding: 30px 20px;
    }

    .product-description-content {
      padding: 28px 24px;
    }

    .product-description-title {
      font-size: 28px;
    }

    .product-description-text {
      font-size: 16px;
    }

    .cta-button,
    .cta-button--primary,
    .cta-button--secondary {
      min-height: 48px;
    }

    .quantity-btn {
      min-width: 48px;
      min-height: 48px;
    }
  }

  @media (max-width: 480px) {
    .product-hero {
      padding: 16px 12px;
      padding-bottom: 88px; /* Space for sticky bar + safe area */
    }

    .product-hero__container {
      padding-left: 0;
      padding-right: 0;
      gap: 20px;
    }

    /* Even larger images on small mobile - maximize screen usage */
    .product-carousel-slide {
      aspect-ratio: 3/4; /* Portrait orientation for small phones */
      min-height: 65vh;
    }

    /* Arrows even smaller and closer to edges */
    .product-carousel-btn {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.7);
    }

    .product-carousel-prev {
      left: 2px;
    }

    .product-carousel-next {
      right: 2px;
    }

    .product-info {
      gap: 16px;
    }

    .product-form {
      gap: 16px;
    }

    /* Sticky bar: single compact row (high-conversion pattern) */
    .sticky-cart-bar {
      padding: 8px 16px;
      padding-bottom: max(8px, env(safe-area-inset-bottom));
    }

    .sticky-cart-bar__content {
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }

    .sticky-cart-bar__image {
      width: 48px;
      height: 48px;
    }

    .sticky-cart-bar__title {
      font-size: 12px;
    }

    .sticky-cart-bar__price .price-current {
      font-size: 14px;
    }

    .sticky-cart-bar__button {
      min-height: 48px;
      min-width: 120px;
      padding: 12px 16px;
      font-size: 14px;
      width: auto;
    }

    .cta-button,
    .cta-button--primary,
    .cta-button--secondary {
      width: 100%;
      min-height: 48px;
      justify-content: center;
      padding: 16px 24px;
    }

    .product-title {
      font-size: 24px;
    }

    /* Trust badges: compact single line to save vertical space */
    .product-trust-badges {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 8px;
    }

    .trust-badge {
      font-size: 12px;
    }

    .trust-badge--shipping {
      padding: 6px 12px;
    }

    .variant-options-grid {
      gap: 8px;
    }

    .variant-option-btn {
      padding: 12px 16px;
      min-height: 44px;
      font-size: 13px;
    }

    .product-description-section {
      padding: 24px 16px;
    }

    .product-description-content {
      padding: 24px 20px;
      border-radius: 20px;
    }

    .product-description-title {
      font-size: 26px;
      margin-bottom: 24px;
      padding-bottom: 20px;
    }

    .product-description-text {
      font-size: 15px;
      line-height: 1.7;
    }

    .product-trust-message {
      padding: 12px 14px;
      font-size: 12px;
    }

    /* Delivery Estimator Styles */
    .delivery-estimator {
      margin: 1rem 0 !important;
      padding: 16px !important;
      background: rgba(74, 124, 44, 0.06) !important;
      border: 1px solid rgba(74, 124, 44, 0.2) !important;
      border-radius: 12px !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .delivery-estimator__label {
      display: block !important;
      font-size: 14px;
      font-weight: 600;
      color: #2d5016;
      margin-bottom: 10px;
    }
    .delivery-estimator__wrapper {
      display: flex !important;
      gap: 10px;
    }
    .delivery-estimator__input {
      flex: 1;
      padding: 12px 14px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 15px;
      width: 100%;
      box-sizing: border-box;
    }
    .delivery-estimator__input:focus {
      outline: none;
      border-color: #2d5016;
    }
    .delivery-estimator__btn {
      padding: 12px 20px;
      background: #2d5016;
      color: #fff !important;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .delivery-estimator__btn:hover {
      background: #4a7c2c;
    }
    .delivery-estimator__result {
      margin-top: 10px;
      font-size: 14px;
      min-height: 1.4em;
      display: block;
    }
    .delivery-estimator__result.delivery-success {
      color: #2d5016;
      font-weight: 500;
    }
    .delivery-estimator__result.delivery-error {
      color: #c62828;
    }
  }
/* END_SECTION:product-main */

/* START_SECTION:product-quality (INDEX:38) */
.product-quality {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-xl);
    background: var(--bg);
    box-sizing: border-box;
  }

  .product-quality__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .product-quality__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(var(--h2-size), 3vw, 42px);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-3xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-quality__badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  .quality-badge-card {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .quality-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .quality-badge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 124, 44, 0.12);
    border-color: var(--sage-green);
  }

  .quality-badge-card:hover::before {
    transform: scaleX(1);
  }

  .quality-badge-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1), rgba(74, 124, 44, 0.05));
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .quality-badge-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--forest-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .quality-badge-card:hover .quality-badge-card__icon {
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    transform: scale(1.1) rotate(5deg);
  }

  .quality-badge-card:hover .quality-badge-card__icon svg {
    color: var(--white);
    transform: scale(1.1);
  }

  .quality-badge-card__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--h5-size), 1.5vw, var(--h4-size));
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .quality-badge-card:hover .quality-badge-card__title {
    color: var(--forest-green);
  }

  .quality-badge-card__description {
    font-size: clamp(var(--body-small), 1vw, 15px);
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
  }

  /* Tablet breakpoint (768px - 968px) */
  @media (max-width: 968px) {
    .product-quality {
      padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .product-quality__title {
      margin-bottom: var(--spacing-2xl);
    }

    .product-quality__badges {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-lg);
    }

    .quality-badge-card {
      padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .quality-badge-card__icon {
      width: 64px;
      height: 64px;
      margin-bottom: var(--spacing-lg);
    }
  }

  /* Mobile breakpoint (max-width: 768px) */
  @media (max-width: 768px) {
    .product-quality {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .product-quality__title {
      margin-bottom: var(--spacing-xl);
    }

    .product-quality__badges {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .quality-badge-card {
      padding: var(--spacing-xl) var(--spacing-md);
    }

    .quality-badge-card__icon {
      width: 56px;
      height: 56px;
      margin-bottom: var(--spacing-md);
    }

    .quality-badge-card__icon svg {
      width: 28px;
      height: 28px;
    }
  }

  /* Small mobile breakpoint (max-width: 480px) */
  @media (max-width: 480px) {
    .product-quality {
      padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .quality-badge-card {
      padding: var(--spacing-lg) var(--spacing-sm);
    }

    .quality-badge-card__icon {
      width: 48px;
      height: 48px;
      margin-bottom: var(--spacing-sm);
    }

    .quality-badge-card__icon svg {
      width: 24px;
      height: 24px;
    }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .quality-badge-card:hover {
      transform: none;
    }

    .quality-badge-card:active {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(74, 124, 44, 0.15);
    }
  }
/* END_SECTION:product-quality */

/* START_SECTION:product-reviews-judge (INDEX:39) */
.product-reviews-judge {
    width: 100%;
    max-width: 100%;
    padding: 40px 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(74, 124, 44, 0.03) 100%);
    box-sizing: border-box;
  }

  .product-reviews-judge__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .reviews-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .judge-me-reviews-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
      0 10px 40px rgba(45, 80, 22, 0.08),
      0 4px 12px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(74, 124, 44, 0.12);
  }

  {% comment %} Judge.me Widget Styling Overrides {% endcomment %}
  .judge-me-reviews-wrapper .jdgm-widget,
  .judge-me-reviews-wrapper .jdgm-review-widget,
  .judge-me-reviews-wrapper .jdgm-rev-widget {
    font-family: inherit;
  }

  .judge-me-reviews-wrapper .jdgm-rev-widget {
    padding: 0;
  }

  .judge-me-reviews-wrapper .jdgm-rev__header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(74, 124, 44, 0.1);
  }

  .judge-me-reviews-wrapper .jdgm-rev__body {
    padding: 20px 0;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.7;
  }

  .judge-me-reviews-wrapper .jdgm-rev__rating {
    color: var(--sage-green);
  }

  .judge-me-reviews-wrapper .jdgm-rev__author {
    font-weight: 600;
    color: var(--text);
  }

  .judge-me-reviews-wrapper .jdgm-rev__timestamp {
    color: rgba(26, 26, 26, 0.6);
    font-size: 14px;
  }

  .judge-me-reviews-wrapper .jdgm-rev__icon {
    color: var(--forest-green);
  }

  .judge-me-reviews-wrapper .jdgm-rev-widget {
    background: transparent;
  }

  .judge-me-reviews-wrapper .jdgm-rev {
    padding: 24px 0;
    border-bottom: 1px solid rgba(74, 124, 44, 0.1);
  }

  .judge-me-reviews-wrapper .jdgm-rev:last-child {
    border-bottom: none;
  }

  .judge-me-reviews-wrapper .jdgm-paginate {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(74, 124, 44, 0.1);
  }

  .judge-me-reviews-wrapper .jdgm-paginate__page {
    color: var(--forest-green);
    border-color: rgba(74, 124, 44, 0.2);
  }

  .judge-me-reviews-wrapper .jdgm-paginate__page:hover,
  .judge-me-reviews-wrapper .jdgm-paginate__page.jdgm-paginate__page--current {
    background: var(--forest-green);
    color: var(--white);
    border-color: var(--forest-green);
  }

  .judge-me-reviews-wrapper .jdgm-form {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(74, 124, 44, 0.15);
  }

  .judge-me-reviews-wrapper .jdgm-form__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
  }

  .judge-me-reviews-wrapper .jdgm-form__field input,
  .judge-me-reviews-wrapper .jdgm-form__field textarea {
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .judge-me-reviews-wrapper .jdgm-form__field input:focus,
  .judge-me-reviews-wrapper .jdgm-form__field textarea:focus {
    border-color: var(--forest-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 44, 0.1);
  }

  .judge-me-reviews-wrapper .jdgm-form__submit {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .judge-me-reviews-wrapper .jdgm-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 44, 0.3);
  }

  @media (max-width: 968px) {
    .product-reviews-judge {
      padding: 30px 20px;
    }

    .judge-me-reviews-wrapper {
      padding: 32px 24px;
    }

    .reviews-title {
      font-size: 28px;
      margin-bottom: 24px;
    }
  }

  @media (max-width: 480px) {
    .product-reviews-judge {
      padding: 24px 16px;
    }

    .judge-me-reviews-wrapper {
      padding: 24px 20px;
      border-radius: 20px;
    }

    .reviews-title {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .judge-me-reviews-wrapper :global(.jdgm-rev) {
      padding: 20px 0;
    }

    .judge-me-reviews-wrapper :global(.jdgm-form__title) {
      font-size: 20px;
    }
  }
/* END_SECTION:product-reviews-judge */

/* START_SECTION:product-reviews (INDEX:40) */
.product-reviews {
    width: 100%;
    max-width: 100%;
    padding: 100px 40px;
    background: var(--bg);
    box-sizing: border-box;
  }

  .product-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-reviews__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-reviews__summary {
    margin-bottom: 60px;
  }

  .rating-summary {
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .rating-summary__average {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .rating-summary__number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 600;
    color: var(--sage-green);
    line-height: 1;
  }

  .rating-summary__stars {
    display: flex;
    gap: 6px;
    color: var(--sage-green);
  }

  .rating-summary__count {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 400;
  }

  .product-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .review-card:hover {
    box-shadow: 0 8px 24px rgba(74, 124, 44, 0.1);
    border-color: var(--sage-green);
    transform: translateY(-2px);
  }

  .review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
  }

  .review-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .review-card__name {
    font-weight: 600;
    color: var(--forest-green);
    font-size: 16px;
  }

  .review-card__verified {
    font-size: 13px;
    color: var(--sage-green);
    font-weight: 400;
  }

  .review-card__rating {
    display: flex;
    gap: 2px;
    color: var(--sage-green);
  }

  .review-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 16px;
    font-weight: 300;
  }

  .review-card__date {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.5);
    font-weight: 300;
  }

  @media (max-width: 768px) {
    .product-reviews {
      padding: 60px 20px;
    }

    .product-reviews__title {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .rating-summary {
      padding: 32px 24px;
    }

    .rating-summary__number {
      font-size: 48px;
    }

    .review-card {
      padding: 32px 24px;
    }

    .review-card__header {
      flex-direction: column;
    }
  }
/* END_SECTION:product-reviews */

/* START_SECTION:product-sustainability (INDEX:41) */
.product-sustainability {
    width: 100%;
    max-width: 100%;
    padding: 100px 40px;
    background: var(--white);
    box-sizing: border-box;
  }

  .product-sustainability__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-sustainability__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-sustainability__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .sustainability-story,
  .environmental-impact,
  .packaging-info {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .sustainability-story::before,
  .environmental-impact::before,
  .packaging-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sustainability-story:hover,
  .environmental-impact:hover,
  .packaging-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 124, 44, 0.12);
    border-color: var(--sage-green);
  }

  .sustainability-story:hover::before,
  .environmental-impact:hover::before,
  .packaging-info:hover::before {
    transform: scaleX(1);
  }

  .sustainability-story h3,
  .environmental-impact h3,
  .packaging-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--forest-green);
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .sustainability-story:hover h3,
  .environmental-impact:hover h3,
  .packaging-info:hover h3 {
    color: var(--sage-green);
  }

  .sustainability-story__content,
  .environmental-impact__content,
  .packaging-info__content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 300;
  }

  @media (max-width: 968px) {
    .product-sustainability__content {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }

  @media (max-width: 968px) {
    .product-sustainability__content {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }

  @media (max-width: 768px) {
    .product-sustainability {
      padding: 60px 20px;
    }

    .product-sustainability__title {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .product-sustainability__content {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .sustainability-story,
    .environmental-impact,
    .packaging-info {
      padding: 40px 28px;
    }
  }
/* END_SECTION:product-sustainability */

/* START_SECTION:product-trust-badges-compact (INDEX:42) */
/* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }

  .product-trust-badges-compact {
    width: 100%;
    max-width: 100%;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(74, 124, 44, 0.03) 100%);
    box-sizing: border-box;
  }

  .product-trust-badges-compact__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 44, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .trust-badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.05), transparent);
    transition: left 0.5s ease;
  }

  .trust-badge-item:hover::before {
    left: 100%;
  }

  .trust-badge-item:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 124, 44, 0.25);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
  }

  .trust-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(74, 124, 44, 0.1) 100%);
    border-radius: 10px;
    color: var(--forest-green);
    flex-shrink: 0;
  }

  .trust-badge-content {
    flex: 1;
  }

  .trust-badge-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px 0;
    font-family: var(--font-heading);
  }

  .trust-badge-text {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
  }

  @media (max-width: 968px) {
    .product-trust-badges-compact {
      padding: 24px 20px;
    }

    .trust-badges-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 480px) {
    .product-trust-badges-compact {
      padding: 20px 16px;
    }

    .trust-badges-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .trust-badge-item {
      padding: 16px 20px;
    }

    .trust-badge-icon {
      width: 40px;
      height: 40px;
    }

    .trust-badge-title {
      font-size: 14px;
    }

    .trust-badge-text {
      font-size: 12px;
    }
  }
/* END_SECTION:product-trust-badges-compact */

/* START_SECTION:product-usage (INDEX:43) */
.product-usage {
    width: 100%;
    max-width: 100%;
    padding: 100px 40px;
    background: var(--white);
    box-sizing: border-box;
  }

  .product-usage__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-usage__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-usage__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .usage-suggestions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .usage-suggestion {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .usage-suggestion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .usage-suggestion:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 124, 44, 0.12);
    border-color: var(--sage-green);
  }

  .usage-suggestion:hover::before {
    transform: scaleX(1);
  }

  .usage-suggestion__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1), rgba(74, 124, 44, 0.05));
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .usage-suggestion__icon svg {
    width: 28px;
    height: 28px;
    color: var(--forest-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .usage-suggestion:hover .usage-suggestion__icon {
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    transform: scale(1.1) rotate(5deg);
  }

  .usage-suggestion:hover .usage-suggestion__icon svg {
    color: var(--white);
    transform: scale(1.1);
  }

  .usage-suggestion__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  .usage-suggestion:hover .usage-suggestion__title {
    color: var(--forest-green);
  }

  .usage-suggestion__description {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
  }

  .usage-instructions {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 40px;
  }

  .usage-instructions h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--forest-green);
    margin-bottom: 24px;
    font-weight: 600;
  }

  .usage-instructions__content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 300;
  }

  .usage-instructions__content ul,
  .usage-instructions__content ol {
    margin-left: 24px;
    margin-top: 16px;
  }

  .usage-instructions__content li {
    margin-bottom: 12px;
  }

  @media (max-width: 968px) {
    .usage-suggestions__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .product-usage {
      padding: 60px 20px;
    }

    .product-usage__title {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .usage-suggestions__grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .usage-instructions {
      padding: 32px 24px;
      margin-top: 32px;
    }
  }
/* END_SECTION:product-usage */

/* START_SECTION:quality-assurance (INDEX:45) */
.quality-assurance {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .quality-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.2), transparent);
  }

  .quality-assurance__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
  }

  .quality-assurance__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    letter-spacing: -0.02em;
    padding: 0;
  }

  .quality-assurance__description {
    font-size: var(--body-large);
    color: var(--text);
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .quality-assurance__badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    align-items: stretch;
  }

  .quality-badge {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.8) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(74, 124, 44, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    position: relative;
    overflow: hidden;
  }

  .quality-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.12), transparent);
    transition: left 0.5s;
  }

  .quality-badge:hover::before {
    left: 100%;
  }

  .quality-badge:hover {
    border-color: var(--sage-green);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15), 0 0 0 4px rgba(74, 124, 44, 0.15);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .quality-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
  }

  .quality-badge__icon svg {
    width: 100%;
    height: 100%;
    color: var(--sage-green);
    transition: color var(--transition-base);
  }

  .quality-badge:hover .quality-badge__icon svg {
    color: var(--forest-green);
  }

  .quality-badge__title {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
  }

  .quality-badge__description {
    font-size: var(--body-normal);
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    margin-top: auto;
  }

  .quality-assurance__promise {
    padding: var(--spacing-xl);
    background-color: rgba(74, 124, 44, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sage-green);
  }

  .quality-assurance__promise-text {
    font-size: var(--body-large);
    font-weight: 600;
    color: var(--forest-green);
    margin: 0;
    font-style: italic;
  }

  /* Mobile: Conversion-optimized 2x2 trust grid */
  /* Research: 21% higher add-to-cart when trust signals are above fold */
  /* Design: Icon + title only, minimal scroll, bold hierarchy, thumb-zone friendly */
  @media (max-width: 768px) {
    .quality-assurance {
      padding: var(--spacing-2xl) var(--spacing-md);
      background: var(--white);
    }

    .quality-assurance__container {
      text-align: center;
    }

    /* Compact title for above-the-fold */
    .quality-assurance__title {
      font-size: clamp(24px, 5.5vw, 28px);
      margin-bottom: var(--spacing-sm);
      letter-spacing: -0.01em;
      font-weight: 700;
    }

    /* Hide description to save vertical space */
    .quality-assurance__description {
      display: none;
    }

    /* 2x2 grid with unified card appearance */
    .quality-assurance__badges {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: var(--spacing-xl);
      padding: 0;
    }

    /* Individual cards with enhanced visibility */
    .quality-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 10px;
      padding: 20px 12px;
      border-radius: 12px;
      border: 1.5px solid rgba(74, 124, 44, 0.15);
      box-shadow: 0 2px 12px rgba(45, 80, 22, 0.06);
      background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.95) 100%);
      min-height: 120px;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Subtle top accent for visual hierarchy */
    .quality-badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
      border-radius: 12px 12px 0 0;
    }

    /* Active/tap state for mobile */
    .quality-badge:active {
      transform: scale(0.98);
      box-shadow: 0 1px 6px rgba(45, 80, 22, 0.08);
      border-color: var(--sage-green);
    }

    /* Larger, bolder icons for scanning */
    .quality-badge__icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      margin: 0;
      flex-shrink: 0;
      background: linear-gradient(135deg, rgba(74, 124, 44, 0.12), rgba(74, 124, 44, 0.06));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
    }

    .quality-badge__icon svg {
      width: 100%;
      height: 100%;
      color: var(--forest-green);
    }

    /* Bold, scannable titles */
    .quality-badge__title {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
      color: var(--forest-green);
      letter-spacing: -0.01em;
      max-width: 100%;
    }

    /* Hide descriptions for clean, scannable layout */
    .quality-badge__description {
      display: none;
    }

    /* Compact promise section */
    .quality-assurance__promise {
      padding: 16px 18px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(74, 124, 44, 0.08) 0%, rgba(74, 124, 44, 0.04) 100%);
      border-left: 3px solid var(--sage-green);
    }

    .quality-assurance__promise-text {
      font-size: 13px;
      line-height: 1.5;
      font-weight: 600;
    }
  }

  /* Extra small screens - optimize for smallest devices */
  @media (max-width: 360px) {
    .quality-badge {
      min-height: 110px;
      padding: 16px 10px;
      gap: 8px;
    }

    .quality-badge__icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
    }

    .quality-badge__title {
      font-size: 13px;
    }
  }
/* END_SECTION:quality-assurance */

/* START_SECTION:recipe-gallery (INDEX:46) */
.recipe-gallery {
    width: 100%;
    padding: var(--spacing-5xl, 48px) var(--spacing-lg, 24px);
    background: var(--white);
    box-sizing: border-box;
  }

  .recipe-gallery__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .recipe-gallery__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl, 40px);
  }

  .recipe-gallery__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--forest-green);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .recipe-gallery__subheading {
    font-size: var(--body-large, 18px);
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .recipe-gallery__grid {
    display: grid;
    grid-template-columns: repeat(var(--recipe-cols, 2), 1fr);
    gap: var(--spacing-2xl, 32px);
    align-items: start;
  }

  .recipe-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(74, 124, 44, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .recipe-card:hover {
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
    transform: translateY(-4px);
  }

  .recipe-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
  }

  .recipe-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .recipe-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(26, 26, 26, 0.35);
    font-size: 14px;
  }

  .recipe-card__content {
    padding: var(--spacing-lg, 20px);
  }

  .recipe-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
  }

  .recipe-card__caption {
    font-size: var(--body-small, 14px);
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
    line-height: 1.5;
  }

  .recipe-gallery__empty {
    text-align: center;
    padding: var(--spacing-3xl);
    background: rgba(74, 124, 44, 0.05);
    border-radius: 12px;
    color: rgba(26, 26, 26, 0.6);
  }

  @media (max-width: 768px) {
    .recipe-gallery {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .recipe-gallery__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }

    .recipe-card__content {
      padding: var(--spacing-md);
    }

    .recipe-card__title {
      font-size: 18px;
    }
  }
/* END_SECTION:recipe-gallery */

/* START_SECTION:search (INDEX:47) */
.search-page {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 250, 250, 0.3) 50%, var(--white) 100%);
    box-sizing: border-box;
  }

  .search-page__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .search-page__header {
    margin-bottom: var(--spacing-4xl);
    text-align: center;
  }

  .search-page__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 10px;
    margin-top: var(--spacing-2xl);
  }

  .search-page__form {
    max-width: 600px;
    margin: 0 auto;
  }

  .search-page__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-page__input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-3xl) var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-full);
    font-size: clamp(var(--body-normal), 1.5vw, var(--body-large));
    font-family: var(--font-body);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
    -webkit-appearance: none;
    appearance: none;
  }

  .search-page__input:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 44, 0.1);
  }

  .search-page__submit {
    position: absolute;
    right: var(--spacing-sm);
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    border: none;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .search-page__submit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 124, 44, 0.3);
  }

  .search-page__submit:active {
    transform: scale(0.95);
  }

  .search-page__results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
  }

  .search-page__results-count {
    font-size: var(--body-large);
    color: var(--text);
    margin: 0;
  }

  .search-page__results-count strong {
    color: var(--forest-green);
    font-weight: 700;
  }

  .search-page__sort {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .search-page__sort-label {
    font-weight: 600;
    color: var(--text);
    font-size: var(--body-normal);
  }

  .search-page__sort-select {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--body-normal);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    min-height: var(--touch-target-min);
    -webkit-appearance: none;
    appearance: none;
  }

  .search-page__results {
    margin-bottom: var(--spacing-4xl);
  }

  .search-page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
  }

  .search-result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(74, 124, 44, 0.1);
    transition: all 0.3s ease;
  }

  .search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
    border-color: rgba(74, 124, 44, 0.2);
  }

  .search-result-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg);
  }

  .search-result-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-result-card:hover .search-result-card__image img {
    transform: scale(1.05);
  }

  .search-result-card__content {
    padding: var(--spacing-lg);
  }

  .search-result-card__title {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
  }

  .search-result-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .search-result-card__title a:hover {
    color: var(--sage-green);
  }

  .search-result-card__excerpt {
    font-size: var(--body-small);
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }

  .search-result-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--sage-green);
    font-weight: 600;
    font-size: var(--body-small);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .search-result-card__link:hover {
    color: var(--forest-green);
  }

  .search-page__pagination {
    margin-top: var(--spacing-4xl);
  }

  .search-page__empty,
  .search-page__initial {
    text-align: center;
    padding: var(--spacing-5xl) var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto;
  }

  .search-page__empty-icon,
  .search-page__initial-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-2xl);
    color: rgba(74, 124, 44, 0.2);
  }

  .search-page__empty-title,
  .search-page__initial-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
  }

  .search-page__empty-text,
  .search-page__initial-text {
    font-size: var(--body-large);
    color: #666;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
  }

  .search-page__suggestions {
    margin: var(--spacing-3xl) 0;
    padding: var(--spacing-xl);
    background: rgba(74, 124, 44, 0.05);
    border-radius: var(--radius-lg);
  }

  .search-page__suggestions h3 {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    color: var(--forest-green);
    margin-bottom: var(--spacing-md);
  }

  .search-page__suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
  }

  .search-page__suggestion-tag {
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--white);
    border: 2px solid rgba(74, 124, 44, 0.2);
    border-radius: var(--radius-full);
    color: var(--forest-green);
    font-size: var(--body-small);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .search-page__suggestion-tag:hover {
    background: var(--sage-green);
    border-color: var(--sage-green);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* Tablet breakpoint (max-width: 1200px) */
  @media (max-width: 1200px) {
    .search-page__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
    }
  }

  /* Tablet breakpoint (max-width: 968px) */
  @media (max-width: 968px) {
    .search-page {
      padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .search-page__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-lg);
    }

    .search-page__results-header {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--spacing-md);
    }

    .search-page__sort {
      width: 100%;
    }

    .search-page__sort-select {
      width: 100%;
    }
  }

  /* Mobile breakpoint (max-width: 768px) */
  @media (max-width: 768px) {
    .search-page {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .search-page__header {
      margin-bottom: var(--spacing-2xl);
    }

    .search-page__form {
      max-width: 100%;
    }

    .search-page__input {
      padding: var(--spacing-sm) var(--spacing-2xl) var(--spacing-sm) var(--spacing-md);
      font-size: 16px; /* Prevents zoom on iOS */
    }

    .search-page__submit {
      width: 40px;
      height: 40px;
      right: var(--spacing-xs);
    }

    .search-page__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
    }

    .search-page__results-header {
      margin-bottom: var(--spacing-xl);
    }

    .search-result-card__content {
      padding: var(--spacing-md);
    }

    .search-page__empty,
    .search-page__initial {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .search-page__empty-icon,
    .search-page__initial-icon {
      width: 80px;
      height: 80px;
    }
  }

  /* Small mobile breakpoint (max-width: 480px) */
  @media (max-width: 480px) {
    .search-page {
      padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .search-page__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .search-page__suggestion-tags {
      gap: var(--spacing-xs);
    }

    .search-page__suggestion-tag {
      padding: var(--spacing-xs) var(--spacing-sm);
      font-size: var(--body-xs);
      min-height: var(--touch-target-min);
    }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .search-page__submit:hover {
      transform: none;
    }

    .search-result-card:hover {
      transform: none;
    }

    .search-result-card:active {
      transform: translateY(-2px);
    }

    .search-page__suggestion-tag:hover {
      transform: none;
    }

    .search-page__suggestion-tag:active {
      transform: translateY(-1px);
    }
  }
/* END_SECTION:search */

/* START_SECTION:shop-header (INDEX:48) */
.shop-header {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 60px var(--spacing-lg) 50px;
    background: #fafafa;
    border-bottom: 1px solid rgba(74, 124, 44, 0.1);
    overflow: hidden;
    box-sizing: border-box;
  }

  .shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(135deg, rgba(74, 124, 44, 0.03) 0%, transparent 50%),
      linear-gradient(225deg, rgba(74, 124, 44, 0.04) 0%, transparent 50%);
    pointer-events: none;
  }

  .shop-header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .shop-header__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .shop-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  }

  .shop-header__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
  }

  .shop-header__content {
    position: relative;
    text-align: center;
  }

  .shop-header__title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 900;
    color: var(--forest-green);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    display: inline-block;
    padding: 0.2em 0.5em;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--forest-green);
    box-shadow: 0 2px 12px rgba(74, 124, 44, 0.08);
  }

  @media (max-width: 768px) {
    .shop-header {
      padding: 40px var(--spacing-md) 32px;
    }

    .shop-header__title {
      font-size: clamp(32px, 8vw, 48px);
    }
  }
/* END_SECTION:shop-header */

/* START_SECTION:sustainability-impact (INDEX:49) */
.sustainability-impact {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--forest-green);
    color: var(--white);
  }

  .sustainability-impact__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .sustainability-impact__title {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
  }

  .sustainability-impact__description {
    font-size: var(--body-large);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .sustainability-impact__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
  }

  .impact-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .impact-metric__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-sm);
  }

  .impact-metric__icon svg {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.9);
  }

  .impact-metric__value {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: var(--sage-green);
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
  }

  .counter-suffix {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
  }

  .impact-metric__label {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--white);
    margin: 0;
  }

  .sustainability-impact__footer {
    margin-top: var(--spacing-2xl);
  }

  .sustainability-impact__footer .btn {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
  }

  .sustainability-impact__footer .btn:hover {
    background-color: var(--white);
    color: var(--forest-green);
  }

  @media (max-width: 1024px) {
    .sustainability-impact__metrics {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-xl);
    }
  }

  @media (max-width: 768px) {
    .sustainability-impact {
      padding: var(--spacing-3xl) var(--spacing-md);
    }

    .sustainability-impact__metrics {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
  }
/* END_SECTION:sustainability-impact */

/* START_SECTION:testimonials (INDEX:50) */
.testimonials {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.5) 0%, var(--white) 50%, rgba(250, 250, 250, 0.5) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-green) 30%, rgba(74, 124, 44, 0.4) 50%, var(--sage-green) 70%, transparent);
  }

  .testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonials__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-2xl);
    margin-top: 0;
    letter-spacing: -0.02em;
    padding: 0;
  }

  .testimonials__carousel {
    position: relative;
    overflow: hidden;
  }

  .testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
    gap: var(--spacing-xl);
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: var(--spacing-lg);
  }

  .testimonial-card__content {
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.9) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1), 0 0 0 1px rgba(74, 124, 44, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .testimonial-card__content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: rgba(74, 124, 44, 0.15);
    line-height: 1;
    font-weight: 900;
  }

  .testimonial-card__rating {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
  }

  .star {
    font-size: 24px;
    color: #ddd;
  }

  .star--filled {
    color: var(--sage-green);
    filter: drop-shadow(0 2px 4px rgba(74, 124, 44, 0.4));
    animation: star-twinkle 2s ease-in-out infinite;
  }

  @keyframes star-twinkle {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.1);
    }
  }

  .testimonial-card__text {
    font-size: var(--body-large);
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
  }

  .testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
  }

  .testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
  }

  .testimonial-card__avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--sage-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h4-size);
    font-weight: 700;
  }

  .testimonial-card__info {
    text-align: left;
  }

  .testimonial-card__name {
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xs);
  }

  .testimonial-card__location {
    font-size: var(--body-small);
    color: #666;
    margin: 0;
  }

  .testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }

  .testimonials__prev,
  .testimonials__next {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text);
  }

  .testimonials__prev:hover,
  .testimonials__next:hover {
    border-color: var(--sage-green);
    color: var(--sage-green);
    transform: scale(1.1);
  }

  .testimonials__prev:disabled,
  .testimonials__next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .testimonials__dots {
    display: flex;
    gap: var(--spacing-sm);
  }

  .testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
  }

  .testimonials__dot.active {
    background-color: var(--sage-green);
    transform: scale(1.2);
  }

  @media (min-width: 768px) {
    .testimonial-card {
      flex: 0 0 calc(50% - var(--spacing-xl) / 2);
      max-width: calc(50% - var(--spacing-xl) / 2);
    }
  }

  @media (max-width: 768px) {
    .testimonials {
      padding: var(--spacing-3xl) var(--spacing-md);
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:usp-icons (INDEX:51) */
.usp-icons {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.3) 0%, var(--white) 50%, rgba(250, 250, 250, 0.3) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .usp-icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 44, 0.3), transparent);
  }

  .usp-icons__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
  }

  .usp-icons__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding-top: var(--spacing-xl);
  }

  .usp-icons__label {
    display: inline-block;
    font-size: var(--body-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage-green);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-sm);
  }

  .usp-icons__label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sage-green), transparent);
  }

  .usp-icons__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--forest-green);
    margin: 0;
    letter-spacing: -0.02em;
    padding: 0;
  }

  .usp-icons__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    align-items: start;
  }

  .usp-item {
    position: relative;
    display: flex;
    height: 100%;
  }

  .usp-item__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 250, 250, 0.8) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(74, 124, 44, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.05);
  }

  .usp-item__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  .usp-item:hover .usp-item__inner {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.15), 0 0 0 4px rgba(74, 124, 44, 0.15);
    border-color: var(--sage-green);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .usp-item:hover .usp-item__inner::before {
    opacity: 1;
  }

  .usp-item__icon-wrapper {
    position: relative;
    margin: 0 auto var(--spacing-xl);
    width: 100px;
    height: 100px;
  }

  .usp-item__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
  }

  .usp-item__icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 124, 44, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  .usp-item:hover .usp-item__icon {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 50%, var(--forest-green) 100%);
    background-size: 200% auto;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 40px rgba(74, 124, 44, 0.4), 0 0 0 8px rgba(74, 124, 44, 0.1);
    animation: icon-shine 2s ease-in-out infinite;
  }

  @keyframes icon-shine {
    0%, 100% {
      background-position: 0% center;
    }
    50% {
      background-position: 100% center;
    }
  }

  .usp-item:hover .usp-item__icon-glow {
    opacity: 1;
  }

  .usp-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .usp-item__icon--svg {
    font-size: 0;
  }

  .usp-item__icon--svg svg {
    width: 48px;
    height: 48px;
    color: var(--sage-green);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .usp-item:hover .usp-item__icon--svg svg {
    color: #fff;
  }

  .usp-item:hover .usp-item__icon img {
    filter: brightness(0) invert(1);
  }

  .usp-item__title {
    font-family: var(--font-heading);
    font-size: var(--h4-size);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-base);
    letter-spacing: -0.01em;
  }

  .usp-item:hover .usp-item__title {
    color: var(--sage-green);
  }

  .usp-item__description {
    font-size: var(--body-normal);
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    flex: 1;
    min-height: 0;
  }

  @media (max-width: 1024px) {
    .usp-icons__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-xl);
    }
  }

  @media (max-width: 768px) {
    .usp-icons {
      padding: var(--spacing-2xl) var(--spacing-md);
    }

    .usp-icons__header {
      margin-bottom: var(--spacing-2xl);
    }

    .usp-icons__title {
      font-size: clamp(24px, 6vw, 32px);
    }

    .usp-icons__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-sm);
    }

    .usp-item__inner {
      padding: var(--spacing-md) var(--spacing-sm);
    }

    .usp-item__icon-wrapper {
      width: 56px;
      height: 56px;
      margin: 0 auto var(--spacing-sm);
    }

    .usp-item__icon {
      width: 56px;
      height: 56px;
    }

    .usp-item__icon--svg svg {
      width: 28px;
      height: 28px;
    }

    .usp-item__icon-glow {
      width: 72px;
      height: 72px;
    }

    .usp-item__title {
      font-size: var(--body-small);
      font-weight: 700;
      margin-bottom: var(--spacing-xs);
      line-height: 1.3;
    }

    .usp-item__description {
      font-size: 11px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .usp-item:hover .usp-item__inner {
      transform: none;
    }
  }
/* END_SECTION:usp-icons */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:52) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:53) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:59) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image--optimized {
    background-color: rgba(245, 245, 245, 0.5);
  }

  .image__img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
  }

  .image__img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .image__img[loading="lazy"].loaded {
    opacity: 1;
  }

  .image__img--error {
    opacity: 0.5;
  }

  .image__placeholder {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 245, 0.8);
    min-height: 200px;
  }

  .image__placeholder svg {
    opacity: 0.5;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:pagination (INDEX:62) */
.pagination {
    margin-top: var(--spacing-4xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--border-color);
  }

  .pagination__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }

  .pagination__link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--sage-green);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-base);
  }

  .pagination__link:hover:not(.pagination__link--disabled) {
    background-color: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
  }

  .pagination__link--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    color: rgba(26, 26, 26, 0.4);
  }

  .pagination__pages {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  .pagination__page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-sm);
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-base);
  }

  .pagination__page:hover:not(.pagination__page--current):not(.pagination__page--dots) {
    background-color: rgba(74, 124, 44, 0.1);
    border-color: var(--sage-green);
    color: var(--sage-green);
  }

  .pagination__page--current {
    background-color: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
  }

  .pagination__page--dots {
    border: none;
    cursor: default;
  }

  .pagination__info {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: var(--body-small);
    color: rgba(26, 26, 26, 0.6);
  }

  @media (max-width: 768px) {
    .pagination__container {
      gap: var(--spacing-sm);
    }

    .pagination__link {
      padding: var(--spacing-xs) var(--spacing-sm);
      font-size: var(--body-small);
    }

    .pagination__page {
      min-width: 36px;
      height: 36px;
      font-size: var(--body-small);
    }
  }
/* END_SNIPPET:pagination */

/* START_SNIPPET:product-card (INDEX:67) */
.product-card {
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(74, 124, 44, 0.12);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
    border-color: rgba(74, 124, 44, 0.25);
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  }

  .product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .product-card:hover .product-card__image {
    transform: scale(1.08);
  }

  .product-card__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  }

  .product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .product-card__badge--sale {
    background: linear-gradient(135deg, #ff4444 0%, #ff3333 100%);
    color: var(--white);
  }

  .product-card__badge--new {
    background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }

  .product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 80, 22, 0.9) 0%, rgba(45, 80, 22, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
  }
  
  .product-card:hover .product-card__overlay {
    opacity: 1;
  }
  
  .product-card__quick-view {
    pointer-events: auto;
  }

  .product-card__quick-view {
    background-color: var(--white);
    color: var(--forest-green);
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .product-card__quick-view:hover {
    background-color: var(--gold);
    color: var(--text);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }

  .product-card__info {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    min-width: 0;
  }

  .product-card__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card:hover .product-card__title {
    color: var(--sage-green);
  }

  .product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }

  .product-card__tag {
    display: inline-block;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, rgba(74, 124, 44, 0.05) 100%);
    color: var(--sage-green);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(74, 124, 44, 0.1);
  }

  .product-card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    margin-top: auto;
  }

  .product-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }

  .product-card__price--current {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--forest-green);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .product-card__price--compare {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.35);
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1.2;
  }

  .product-card__price-meta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-card__price--gst {
    font-size: 12px;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 700;
  }

  .product-card__price--gst-note {
    display: block;
    font-size: 11px;
    color: var(--forest-green);
    font-weight: 700;
    width: 100%;
    margin-top: 4px;
    padding: 4px 8px;
    background: rgba(74, 124, 44, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--sage-green);
  }

  .product-card__form {
    margin-top: auto;
    padding: 0 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-card__quantity-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .product-card__quantity-row--hidden {
    display: none !important;
  }

  .product-card__qty-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--forest-green);
    flex-shrink: 0;
  }

  .product-card__quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid rgba(74, 124, 44, 0.25);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
  }

  .product-card__qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(74, 124, 44, 0.1);
    color: var(--forest-green);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .product-card__qty-btn:hover {
    background: var(--sage-green);
    color: var(--white);
  }

  .product-card__qty-input {
    width: 42px;
    height: 36px;
    border: none;
    border-left: 1px solid rgba(74, 124, 44, 0.2);
    border-right: 1px solid rgba(74, 124, 44, 0.2);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }

  .product-card__qty-input::-webkit-inner-spin-button,
  .product-card__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .product-card__qty-input[type="number"] {
    -moz-appearance: textfield;
  }

  .product-card__add-to-cart {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px;
    font-weight: 700;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
  }

  .product-card__add-to-cart:hover {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 44, 0.3);
  }

  /* Mobile: Remove quick view and hover effects */
  @media (max-width: 768px) {
    /* Hide quick view overlay completely on mobile */
    .product-card__overlay {
      display: none !important;
    }

    /* Disable all hover effects on mobile */
    .product-card:hover {
      transform: none;
      box-shadow: 0 2px 12px rgba(45, 80, 22, 0.06);
      border-color: rgba(74, 124, 44, 0.1);
    }

    .product-card:hover .product-card__image {
      transform: none;
    }

    .product-card:hover .product-card__title {
      color: var(--forest-green);
    }

    .product-card__add-to-cart:hover {
      background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
      transform: none;
      box-shadow: none;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:quick-view (INDEX:68) */
.quick-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    height: -webkit-fill-available;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    padding: calc(var(--spacing-lg) + env(safe-area-inset-top)) calc(var(--spacing-lg) + env(safe-area-inset-right)) calc(var(--spacing-lg) + env(safe-area-inset-bottom)) calc(var(--spacing-lg) + env(safe-area-inset-left));
  }

  .quick-view.active {
    display: flex;
  }

  .quick-view__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
  }

  .quick-view__modal {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    max-height: 90dvh;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-view__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition-base);
  }

  .quick-view__close:hover {
    background-color: var(--forest-green);
    color: var(--white);
    border-color: var(--forest-green);
  }

  .quick-view__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .quick-view__image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg);
  }

  .quick-view__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .quick-view__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white) 0%, rgba(74, 124, 44, 0.06) 100%);
  }

  .quick-view__image-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.5;
  }

  .quick-view__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .quick-view__title {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--forest-green);
    margin: 0;
  }

  .quick-view__price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
  }

  .price-compare {
    font-size: var(--body-large);
    color: rgba(26, 26, 26, 0.5);
    text-decoration: line-through;
  }

  .price-current {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: 700;
    color: var(--sage-green);
  }

  .quick-view__description {
    font-size: var(--body-normal);
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
  }

  .quick-view__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .badge--health {
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: rgba(74, 124, 44, 0.1);
    color: var(--sage-green);
    font-size: var(--body-small);
    font-weight: 600;
    border-radius: var(--radius-full);
  }

  .quick-view__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .quick-view__variant-select {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--body-normal);
  }

  .quick-view__quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .quick-view__quantity label {
    font-weight: 600;
    color: var(--text);
  }

  .quantity-input {
    width: 80px;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
  }

  .quick-view__view-full {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
  }

  .quick-view__view-full:hover {
    color: var(--forest-green);
  }

  @media (max-width: 768px) {
    .quick-view__content {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
      padding: var(--spacing-lg);
    }

    .quick-view__image {
      padding-top: 100%;
    }
  }
/* END_SNIPPET:quick-view */