/* Growly PDP (/growly/) — values parity-locked to the original styles.css
   STEP 15 block (+ STEP 9 .box-categories reused by the pods grid).
   Breakpoint map (Q2): 960→960, 720→768. */

@layer pages {
  :root {
    /* Production-derived shades lifted verbatim from the original (page tokens,
       not brandbook palette — Q1). accent-aa = italic accent between --green-deep
       and --green that clears AA-large on cream (4.23:1). Swatch dots are the
       product casing colors (Alb mat / Negru mat), not brand colors. */
    --growly-accent-aa: var(--green);
    --growly-swatch-white: #fafafa;
    --growly-swatch-black: #1a1a1a;
  }

  .growly-page {
    background: var(--cream);
  }

  /* — Breadcrumb: block-level override of the global flex .breadcrumb so the
       inner box fills the container instead of centering as a flex item. — */
  .growly-breadcrumb {
    display: block;
    background: var(--cream);
    padding: 0;
  }

  .growly-breadcrumb__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 48px 24px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* — Product hero — */
  .growly-hero {
    background: var(--cream);
    padding: 12px 24px 36px;
  }

  .growly-hero__inner {
    /* Matches the homepage hero (--container-wide) so the gallery sits flush
       with the same edge gutter. */
    max-width: var(--container-wide);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.55fr) minmax(400px, 440px);
    gap: 48px;
  }

  /* Center the buy box against the MAIN IMAGE ONLY: `display: contents` flattens
     the gallery so its children become direct grid items; the buy box spans only
     the main-image row and centers against it, ignoring the thumbs strip. */
  .growly-gallery {
    display: contents;
  }

  @media (min-width: 961px) {
    .growly-hero__inner {
      grid-template-rows: auto auto;
      column-gap: 48px;
      row-gap: 12px;
    }

    .growly-hero__inner > .growly-gallery__main {
      grid-column: 1;
      grid-row: 1;
    }

    .growly-hero__inner > .growly-gallery__thumbs {
      grid-column: 1;
      grid-row: 2;
    }

    .growly-hero__inner > .growly-buy.sticky-sidebar-layout__sidebar {
      grid-column: 2;
      grid-row: 1;
      align-self: center;
    }
  }

  /* — Gallery — */
  @media (max-width: 960px) {
    .growly-gallery {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }

  .growly-gallery__main {
    position: relative;
    margin: 0;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    /* 4:3 keeps the product hero short enough to fit alongside the configurator
       on a 1440×900 desktop. */
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 48px -28px rgba(var(--green-deep-rgb), 0.4);
  }

  .growly-gallery__main img,
  .growly-gallery__main picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .growly-gallery__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cream) 94%, transparent);
    backdrop-filter: blur(4px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--green-deep);
  }

  .growly-gallery__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
  }

  .growly-gallery__thumbs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
  }

  .growly-gallery__thumbs li {
    flex: 0 0 auto;
  }

  .growly-gallery__thumb {
    position: relative;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 1.5px solid transparent;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 180ms var(--cf-ease), transform 180ms var(--cf-ease);
  }

  .growly-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .growly-gallery__thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--green-rgb), 0.4);
  }

  .growly-gallery__thumb.is-active {
    border-color: var(--green-deep);
    box-shadow: 0 0 0 1px var(--green-deep) inset;
  }

  .growly-gallery__thumb:focus-visible {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.30);
  }

  /* — Buy box (open layout — no card chrome on desktop) — */
  .growly-buy {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .growly-buy__eyebrow {
    margin: 0;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--green);
  }

  .growly-buy__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--green-deep);
    text-wrap: balance;
  }

  .growly-buy__title em,
  .growly-buy__title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--growly-accent-aa);
  }

  .growly-buy__price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
  }

  .growly-buy__price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-style: italic;
    font-size: 34px;
    line-height: 1;
    color: var(--green-deep);
    font-variant-numeric: tabular-nums;
  }

  .growly-buy__price-currency {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    color: var(--green-deep);
  }

  .growly-buy__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    margin-top: -20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    white-space: nowrap;
    align-self: flex-start;
  }

  .growly-buy__rating-stars {
    color: var(--green);
    letter-spacing: 2px;
    font-size: 13px;
  }

  .growly-buy__rating-meta strong {
    color: var(--green-deep);
    font-weight: 800;
  }

  .growly-buy__rating:hover .growly-buy__rating-meta {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* Quantity + color, single two-column row */
  .growly-buy__cq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 0;
  }

  .growly-buy__cq-half {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
  }

  .growly-buy__cq-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 0.01em;
    line-height: 1.3;
  }

  .growly-buy__cq-label [data-color-name] {
    font-weight: 800;
  }

  .growly-buy__color {
    display: inline-flex;
    gap: 10px;
  }

  .growly-buy__swatch {
    width: 44px;
    height: 44px;
    padding: 3px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 160ms var(--cf-ease), box-shadow 160ms var(--cf-ease);
  }

  .growly-buy__swatch:hover {
    border-color: rgba(var(--green-rgb), 0.32);
  }

  .growly-buy__swatch.is-on {
    border-color: var(--green-deep);
    box-shadow: 0 0 0 1px var(--green-deep) inset;
  }

  .growly-buy__swatch:focus-visible {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.30);
  }

  .growly-buy__swatch-dot {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: block;
  }

  .growly-buy__swatch-dot--white {
    background: var(--growly-swatch-white);
  }

  .growly-buy__swatch-dot--black {
    background: var(--growly-swatch-black);
  }

  .growly-buy__stepper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  .growly-buy__step-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--green-deep);
    font-size: 18px;
    font-weight: 700;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 160ms var(--cf-ease), background-color 160ms var(--cf-ease);
  }

  .growly-buy__step-btn:hover:not(:disabled) {
    border-color: rgba(var(--green-rgb), 0.32);
    background: rgba(var(--green-rgb), 0.06);
  }

  .growly-buy__step-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .growly-buy__step-btn:focus-visible {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.25);
  }

  .growly-buy__step-val {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--green-deep);
    font-variant-numeric: tabular-nums;
  }

  .growly-buy__step-hint {
    display: inline-block;
    margin: 0;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(var(--green-rgb), 0.12);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--green-deep);
  }

  .growly-buy__step-hint[hidden] {
    display: none;
  }

  /* CTA + trust strip block, both left-anchored and equally wide */
  .growly-buy__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: flex-start;
    gap: 14px;
    margin: 0;
    width: max-content;
    max-width: 100%;
  }

  .growly-buy__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    padding: 0 32px;
    width: 100%;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 24px -16px rgba(var(--green-rgb), 0.55);
    transition: background-color 180ms var(--cf-ease), transform 180ms var(--cf-ease);
  }

  .growly-buy__cta:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
  }

  .growly-buy__cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--cream), 0 0 0 6px var(--green-deep);
  }

  .growly-buy__trust-line {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-soft);
    text-align: center;
    width: 100%;
  }

  /* — Ce este Growly + time-lapse poster — */
  .growly-explain {
    background: #fff;
    padding: 96px 24px;
  }

  .growly-explain__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: center;
  }

  .growly-explain__heading {
    margin: 8px 0 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--green-deep);
  }

  .growly-explain__heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--green);
  }

  .growly-explain__body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--green-deep);
    max-width: 44ch;
    margin: 0 0 12px;
  }

  .growly-explain__body strong {
    font-weight: 800;
    color: var(--green-deep);
  }

  .growly-explain__media {
    position: relative;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 16 / 10;
    box-shadow: 0 16px 48px -28px rgba(var(--green-deep-rgb), 0.4);
  }

  /* — Cum funcționează (3-step) — */
  .growly-how {
    background: var(--cream);
    padding: 96px 24px;
  }

  .growly-how__inner {
    max-width: var(--container);
    margin: 0 auto;
  }

  .growly-how__cards {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .growly-how__card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 32px -22px rgba(var(--green-deep-rgb), 0.32);
  }

  .growly-how__icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 4px;
  }

  .growly-how__icon svg {
    width: 44px;
    height: 44px;
  }

  /* Brandbook secondary palette — same magenta/sky/orange as the leaf icons */
  .growly-how__icon--magenta {
    background: color-mix(in srgb, var(--magenta) 12%, transparent);
    color: var(--magenta);
  }

  .growly-how__icon--sky {
    background: color-mix(in srgb, var(--sky) 14%, transparent);
    color: var(--sky);
  }

  .growly-how__icon--orange {
    background: color-mix(in srgb, var(--orange) 12%, transparent);
    color: var(--orange);
  }

  .growly-how__step-name {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: var(--green-deep);
  }

  .growly-how__step-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-soft);
  }

  /* Box categories (shared pattern with /abonament/ — 4 cream cards, one per family) */
  .box-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
  }

  .box-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: transform 240ms var(--cf-ease), border-color 240ms var(--cf-ease);
  }

  .box-category:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--green-rgb), 0.32);
  }

  .box-category__leaf {
    display: block;
    width: 64px;
    margin: 0 auto 14px;
    flex-shrink: 0;
  }

  .box-category__leaf img,
  .box-category__leaf svg {
    display: block;
    width: 100%;
    height: auto;
  }

  .box-category__leaf--flori {
    aspect-ratio: 126 / 192;
    color: var(--green);
  }

  .box-category__leaf--butterhead { color: var(--magenta); }
  .box-category__leaf--oakleaf    { color: var(--sky); }
  .box-category__leaf--romaine    { color: var(--orange); }

  .box-category__name {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: var(--green-deep);
  }

  .box-category__hint {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-soft);
  }

  /* — Pod variety grid — */
  .growly-pods {
    background: #fff;
    padding: 96px 24px;
  }

  .growly-pods__inner {
    max-width: var(--container);
    margin: 0 auto;
  }

  .growly-pods__grid {
    margin-top: 8px;
  }

  .growly-pod-card {
    position: relative;
  }

  .growly-pod-card__price {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--cream);
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--green-deep);
  }

  .growly-pods__note {
    margin-top: 32px;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--green-deep);
  }

  /* — Specifications — */
  .growly-specs {
    background: var(--cream);
    padding: 96px 24px;
  }

  .growly-specs__inner {
    max-width: var(--container);
    margin: 0 auto;
  }

  .growly-specs__grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 880px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .growly-specs__group {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 0;
    align-items: center;
    padding: 22px 24px;
    background: var(--warm-cream);
    border-radius: 20px;
  }

  .growly-specs__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
    flex-shrink: 0;
  }

  .growly-specs__icon svg {
    width: 22px;
    height: 22px;
  }

  .growly-specs__icon--magenta {
    background: color-mix(in srgb, var(--magenta) 14%, transparent);
    color: var(--magenta);
  }

  .growly-specs__icon--orange {
    background: color-mix(in srgb, var(--orange) 14%, transparent);
    color: var(--orange);
  }

  .growly-specs__icon--sky {
    background: color-mix(in srgb, var(--sky) 16%, transparent);
    color: var(--sky);
  }

  .growly-specs__icon--green {
    background: rgba(var(--green-rgb), 0.14);
    color: var(--green-deep);
  }

  .growly-specs__group-name {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 17px;
    color: var(--green-deep);
    line-height: 1.2;
  }

  .growly-specs__pairs {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .growly-specs__pairs > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(var(--green-deep-rgb), 0.10);
  }

  .growly-specs__pairs > div:last-child {
    border-bottom: none;
  }

  .growly-specs__pairs dt {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-soft);
    flex-shrink: 0;
  }

  .growly-specs__pairs dd {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    color: var(--green-deep);
    text-align: right;
    font-variant-numeric: tabular-nums;
    min-width: 0;
  }

  /* — Reviews — */
  .growly-reviews {
    background: #fff;
    padding: 96px 24px;
  }

  .growly-reviews__inner {
    max-width: var(--container);
    margin: 0 auto;
  }

  .growly-reviews__summary {
    margin: 14px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--text-soft);
  }

  .growly-reviews__summary strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-style: italic;
    font-size: 16px;
    color: var(--green-deep);
  }

  .growly-reviews__summary-stars {
    color: var(--green);
    letter-spacing: 2px;
    font-size: 15px;
  }

  .growly-reviews__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .growly-review {
    background: var(--cream);
    padding: 28px 26px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .growly-review__quote {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: var(--green-deep);
  }

  .growly-review__byline {
    margin: 0;
    font-size: 14px;
    color: var(--green-deep);
  }

  .growly-review__byline strong {
    font-weight: 800;
  }

  /* — FAQ wrapper (round +/× chip replaces the global summary bars) — */
  .growly-faq-section {
    padding: 96px 24px 100px;
  }

  .growly-faq-section__inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .growly-faq-section .section-head {
    margin-bottom: 40px;
  }

  .growly-faq-section .faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-right: 4px;
  }

  .growly-faq-section .faq__item summary::before,
  .growly-faq-section .faq__item summary::after {
    display: none;
  }

  .growly-faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(var(--green-rgb), 0.10);
    display: grid;
    place-items: center;
    color: var(--green-deep);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform 180ms var(--cf-ease), background-color 180ms var(--cf-ease), color 180ms var(--cf-ease);
  }

  .growly-faq-section .faq__item[open] .growly-faq__icon {
    background: var(--green-deep);
    color: #fff;
    transform: rotate(45deg);
  }

  /* — Final CTA — */
  .growly-final-cta {
    background: var(--cream);
    padding: 120px 24px 220px;
    color: var(--text);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .growly-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .growly-final-cta__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--green-deep);
  }

  .growly-final-cta__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--green);
  }

  .growly-final-cta__sub {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    max-width: 52ch;
  }

  .growly-final-cta__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 17px;
    margin-top: 10px;
    transition: background-color 180ms var(--cf-ease), transform 180ms var(--cf-ease);
  }

  .growly-final-cta__pill:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
  }

  .growly-final-cta__pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--cream), 0 0 0 6px var(--green);
  }

  .growly-final-cta__fineprint {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--muted-strong);
  }

  .growly-final-cta__fineprint a {
    color: var(--green-deep);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .growly-final-cta__fineprint a:hover {
    color: var(--green);
  }

  /* — Tablet: sticky sidebar collapses, buy box regains card chrome — */
  @media (max-width: 960px) {
    .growly-hero__inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .growly-buy {
      padding: 28px 28px 24px;
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 12px 40px -28px rgba(var(--green-deep-rgb), 0.35);
    }

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

  /* — Mobile — */
  @media (max-width: 768px) {
    .growly-hero {
      padding: 24px 18px 56px;
    }

    .growly-explain__inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .growly-explain {
      padding: 64px 18px;
    }

    .growly-how,
    .growly-pods,
    .growly-specs,
    .growly-reviews {
      padding: 64px 18px;
    }

    .growly-faq-section {
      padding: 64px 18px;
    }

    .growly-buy {
      padding: 22px 20px;
    }

    .growly-buy__title {
      font-size: 26px;
    }

    .growly-buy__price-amount {
      font-size: 26px;
    }

    .growly-explain__heading {
      font-size: 30px;
    }

    .growly-specs__grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .growly-specs__group {
      padding: 18px 20px;
      column-gap: 14px;
    }

    .growly-specs__icon {
      width: 40px;
      height: 40px;
    }

    .growly-specs__icon svg {
      width: 20px;
      height: 20px;
    }

    .growly-specs__group-name {
      font-size: 16px;
    }

    .growly-specs__pairs > div {
      gap: 12px;
    }

    .growly-final-cta {
      padding: 80px 16px 140px;
    }

    .growly-gallery__thumbs {
      gap: 8px;
    }
  }

  @media (max-width: 430px) {
    .growly-hero__inner,
    .growly-buy,
    .growly-buy__actions {
      min-width: 0;
      max-width: 100%;
    }

    .growly-buy__title,
    .growly-buy__cq-label,
    .growly-buy__cta,
    .growly-buy__trust-line {
      overflow-wrap: anywhere;
    }

    .growly-buy__actions {
      width: 100%;
    }

    .growly-buy__cta {
      flex-wrap: wrap;
      padding-inline: 16px;
      text-align: center;
    }

    .growly-gallery__badge {
      right: 18px;
      max-width: calc(100% - 36px);
      line-height: 1.3;
    }

    .growly-gallery__thumbs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      width: 100%;
    }

    .growly-gallery__thumbs li {
      min-width: 0;
    }

    .growly-gallery__thumb {
      width: 100%;
      height: auto;
      aspect-ratio: 1;
    }

    .growly-buy__rating {
      max-width: 100%;
      flex-wrap: wrap;
      white-space: normal;
    }

    .growly-buy__cq {
      grid-template-columns: minmax(132px, 1fr) minmax(98px, auto);
      gap: 12px;
    }

    .box-categories {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }

  @media (max-width: 360px) {
    .growly-buy__cq {
      grid-template-columns: 1fr;
    }
  }

  /* ── Mobile sticky buy bar (live audit MOBILE-05) ──────────────────────
     The buy box sits ~876px down, so on a phone the only way to purchase
     scrolls off and never returns. Mirrors the pattern the payment page
     already ships (.payc__sticky-cta in css/pages/payment.css) rather than
     inventing a second one. Hidden by default at every width; js/growly.js
     reveals it only below 720px once the real CTA leaves the viewport, so
     with JS off nothing is ever shown. */
  .growly-sticky-cta { display: none; }

  @media (max-width: 720px) {
    .growly-sticky-cta {
      display: block;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 50;
      padding: 10px 14px max(10px, env(safe-area-inset-bottom));
      background: rgba(252, 250, 246, 0.96);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(var(--green-rgb), 0.18);
      transform: translateY(100%);
      /* Not just moved off-screen: hidden, so its link cannot be tabbed into
         while the bar is invisible (axe aria-hidden-focus). js/growly.js also
         sets [inert]; this covers browsers without inert support. */
      visibility: hidden;
      transition: transform 220ms var(--cf-ease), visibility 0s linear 220ms;
    }

    .growly-sticky-cta[data-visible="true"] {
      transform: translateY(0);
      visibility: visible;
      transition: transform 220ms var(--cf-ease), visibility 0s;
    }

    .growly-sticky-cta__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      min-height: 52px;
      background: var(--green-deep);
      color: #fff;
      border-radius: 999px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 16px 28px -16px rgba(var(--green-deep-rgb), 0.55);
    }

    .growly-sticky-cta__btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px var(--cream), 0 0 0 6px var(--green-deep);
    }

    /* Keep the last content clear of the bar. */
    .growly-page { padding-bottom: 84px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .growly-sticky-cta { transition: none; }
  }

}
