/* AquaFromAir — product page styles */

  :root {
    --abyss:      #1A2B2C;
    --teal:       #3D7A80;
    --teal-deep:  #2C5F64;
    --teal-mid:   #4E8F95;
    --aqua:       #86CCE0;
    --aqua-pale:  #C8E9F2;
    --linen:      #F2EBE1;
    --linen-mid:  #EAE0D4;
    --linen-dark: #DDD0C0;
    --gold:       #C8A96E;
    --mist:       #F2F5F2;
    --mist-pale:  #E6F3F4;
    --white:      #FFFFFF;
    --slate:      #7A9496;
    --text:       #2C3B3C;
    --text-light: #6B7C7D;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  /* ─── TICKER ─── */
  .ticker-wrap {
    overflow: hidden; background: var(--abyss);
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    height: 40px;
  }
  .ticker { display: flex; width: max-content; animation: ticker 48s linear infinite; }
  .ticker-item { padding: 0 40px; height: 40px; line-height: 40px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.1); }
  .ticker-item span { color: var(--gold); }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  body { font-family: 'Nunito Sans', sans-serif; background: var(--linen); color: var(--text); padding-top: 120px; }
  html { overflow-x: hidden; }

  /* ─── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 101; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(56px, calc((100% - 1100px) / 2)); background: var(--linen); backdrop-filter: blur(16px); transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: 0 2px 24px rgba(26,43,44,0.08); }
  .nav-logo { display: flex; align-items: center; height: 36px; text-decoration: none; flex-shrink: 0; }
  .nav-logo svg { height: 45px; width: auto; display: block; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: var(--text); text-decoration: none; transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--teal); }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .nav-social { display: flex; align-items: center; gap: 14px; }
  .nav-social a { display: flex; align-items: center; justify-content: center; color: var(--slate); transition: color 0.2s; }
  .nav-social a:hover { color: var(--teal); }
  .nav-social-divider { width: 1px; height: 20px; background: rgba(61,122,128,0.2); }
  .nav-cta { background: var(--teal); color: var(--white); padding: 11px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
  .nav-cta:hover { background: var(--teal-deep); }

  /* ─── BREADCRUMB ── */
  .breadcrumb {
    margin-top: 0;
    padding: 16px 72px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--linen-dark);
    background: var(--linen);
    position: sticky;
    top: 116px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(26,43,44,0.06);
  }
  .breadcrumb a { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--teal); }
  .breadcrumb-sep { color: var(--linen-dark); font-size: 12px; }
  .breadcrumb-current { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
  .breadcrumb-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
  .breadcrumb-nav-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    font-size: 20px; line-height: 1;
    color: var(--teal-deep); text-decoration: none;
    border: 1.5px solid var(--teal); border-radius: 2px;
    background: var(--white);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    letter-spacing: 0;
    box-shadow: 0 1px 4px rgba(44,95,100,0.08);
  }
  a.breadcrumb-nav-btn:hover { color: var(--white); border-color: var(--teal-deep); background: var(--teal); }
  .breadcrumb-nav-disabled { opacity: 0.25; cursor: default; border-color: var(--linen-dark); color: var(--slate); background: transparent; box-shadow: none; }

  /* ─── PRODUCT HERO ── */
  .product-hero { margin-top: 112px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 480px;
    border-bottom: 1px solid var(--linen-dark);
  }
  .hero-visual {
    background: linear-gradient(145deg, var(--mist-pale) 0%, var(--aqua-pale) 60%, var(--linen-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 32px;
  }
  .hero-visual::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(134,204,224,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
  }
  .hero-machine {
    position: relative; z-index: 1;
    width: auto; max-width: 75%; max-height: 75%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(44,95,100,0.2));
    animation: float 4s ease-in-out infinite;
    object-fit: contain;
  }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

  .hero-info {
    padding: 40px 64px;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--linen);
  }
  .hero-kicker {
    font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-kicker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
  .hero-headline {
    font-family: 'Fraunces', serif; font-weight: 300;
    font-size: clamp(32px, 3.5vw, 48px); line-height: 1.05;
    color: var(--abyss); margin-bottom: 20px;
  }
  .hero-headline em { font-style: italic; color: var(--teal); }
  .hero-tagline {
    font-size: 15px; color: var(--text-light); line-height: 1.65;
    max-width: 620px; margin-bottom: 36px;
  }

  /* ─── SPECS BAR ── */
  .specs-bar {
    display: flex; border-top: 1px solid var(--linen-dark); border-bottom: 1px solid var(--linen-dark);
    margin: 0 -64px; padding: 0 64px;
  }
  .spec-pill {
    flex: 1; padding: 20px 0;
    display: flex; flex-direction: column; gap: 4px;
  }
  .spec-pill + .spec-pill { border-left: 1px solid var(--linen-dark); padding-left: 20px; }
  .spec-pill-label { font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
  .spec-pill-val { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 500; color: var(--abyss); }

  /* ─── HERO CONFIG INLINE ── */
  .hero-config-inline {
    display: flex; align-items: center; gap: 16px;
    padding: 0 18px;
    height: 52px;
    background: var(--white); border: 1px solid var(--linen-dark);
    border-radius: 2px;
  }
  .hero-config-group { display: flex; align-items: center; gap: 10px; }
  .hero-config-label { font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--slate); }
  .hero-config-swatches { display: flex; gap: 6px; align-items: center; }
  .hero-swatch {
    width: 18px; height: 18px; border-radius: 50%; display: inline-block;
    border: 1.5px solid rgba(0,0,0,0.1);
    position: relative; cursor: default;
    transition: transform 0.2s, width 0.2s, height 0.2s;
  }
  .hero-swatch:hover { transform: scale(1.25); }
  .hero-swatch::after {
    content: attr(title);
    position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
    background: var(--abyss); color: var(--white);
    font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 8px; border-radius: 2px; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.15s;
  }
  .hero-swatch:hover::after { opacity: 1; }
  .hero-config-plugs { display: flex; gap: 4px; align-items: center; }
  .hero-plug-tag { font-family: 'Jost', sans-serif; font-size: 10px; color: var(--teal); background: var(--mist-pale); padding: 2px 6px; border-radius: 2px; }
  .hero-config-divider { width: 1px; height: 28px; background: var(--linen-dark); flex-shrink: 0; }
  .hero-price-mobile { display: none; }

  /* ─── HERO CTA ROW ── */
  .hero-cta-row {
    margin-top: 32px;
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    padding: 14px 32px; font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
    background: var(--teal); color: var(--white); border-radius: 2px;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: flex; align-items: center; gap: 10px;
  }
  .btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
  .btn-secondary {
    padding: 14px 24px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
    color: var(--teal); border: 1.5px solid var(--teal); border-radius: 2px;
    text-decoration: none; transition: background 0.2s, color 0.2s;
    display: flex; align-items: center; gap: 8px; background: none;
  }
  .btn-secondary:hover { background: var(--teal); color: var(--white); }
  .hero-price {
    margin-left: auto;
    text-align: right;
  }
  .hero-price-label { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--slate); }
  .hero-price-val { font-family: 'Fraunces', serif; font-weight: 400; font-size: 28px; color: var(--abyss); }
  .hero-price-val sup { font-size: 16px; vertical-align: super; }

  /* ─── CONTENT SECTIONS ── */
  .content-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 72px; }

  .section-kicker { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
  .section-headline { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(28px, 3vw, 40px); line-height: 1.15; color: var(--abyss); margin-bottom: 24px; }
  .section-headline em { font-style: italic; }

  /* ─── DESCRIPTION ── */
  .description-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .desc-prose { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.75; }
  .desc-prose p + p { margin-top: 18px; }
  .desc-pull {
    padding: 32px;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--aqua);
    border-radius: 0 4px 4px 0;
  }
  .desc-pull-quote {
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
    font-size: 20px; line-height: 1.4; color: var(--white);
    margin-bottom: 16px;
  }
  .desc-pull-stat { display: flex; align-items: baseline; gap: 6px; }
  .desc-pull-num { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 300; color: var(--aqua); line-height: 1; }
  .desc-pull-unit { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .desc-divider { grid-column: 1 / -1; height: 1px; background: rgba(255,255,255,0.1); margin: 16px 0; }

  /* ─── FEATURES ── */
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
  .feature-card {
    background: rgba(255,255,255,0.04); padding: 36px 32px;
    transition: background 0.2s;
  }
  .feature-card:hover { background: rgba(255,255,255,0.08); }
  .feature-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
  .feature-icon svg { color: var(--white); }
  .feature-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .feature-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: 17px; color: var(--white); line-height: 1.2; }
  .feature-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

  /* ─── COLOR & PLUG ── */
  .config-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .config-group-title { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 20px; }
  .color-swatches { display: flex; gap: 12px; flex-wrap: wrap; }
  .color-swatch {
    width: 56px; height: 56px; border-radius: 50%;
    position: relative; cursor: default;
    transition: transform 0.2s;
  }
  .color-swatch:hover { transform: scale(1.08); }
  .color-swatch::after {
    content: attr(data-name);
    position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
    font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--slate); white-space: nowrap;
  }
  .swatch-sand { background: #D4BFA0; border: 2px solid rgba(212,191,160,0.5); }
  .swatch-black { background: #2A2A2A; border: 2px solid rgba(0,0,0,0.15); }
  .swatch-white { background: #F5F5F5; border: 2px solid rgba(0,0,0,0.12); }
  .swatch-silver { background: linear-gradient(135deg, #C8C8C8 0%, #E8E8E8 50%, #B8B8B8 100%); border: 2px solid rgba(0,0,0,0.1); }
  .plug-types { display: flex; gap: 16px; flex-wrap: wrap; }
  .plug-type {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px; border: 1.5px solid var(--linen-dark);
    background: var(--white); border-radius: 4px;
    min-width: 72px;
    transition: border-color 0.2s, background 0.2s;
  }
  .plug-type:hover { border-color: var(--teal); background: var(--mist-pale); }
  .plug-type-label { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--slate); }
  .plug-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }

  /* ─── GALLERY ── */
  .gallery-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; border-radius: 4px; overflow: hidden; }
  .gallery-img {
    background: linear-gradient(145deg, var(--mist-pale) 0%, var(--aqua-pale) 100%);
    display: block;
    cursor: pointer; position: relative; overflow: hidden;
    transition: opacity 0.2s;
  }
  .gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gallery-img:hover { opacity: 0.9; }
  .gallery-img:hover .gallery-overlay { opacity: 1; }
  .gallery-img-main { height: 320px; grid-row: span 2; }
  .gallery-img-secondary { height: 154px; }
  .gallery-overlay { position: absolute; inset: 0; background: rgba(26,43,44,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
  .gallery-overlay svg { color: white; }

  /* ─── BROCHURE ── */
  .brochure-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 32px;
    background: var(--abyss);
    border-radius: 2px;
  }
  .brochure-left { display: flex; align-items: center; gap: 18px; }
  .brochure-icon { width: 44px; height: 44px; background: rgba(200,169,110,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .brochure-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: 16px; color: var(--white); }
  .brochure-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
  .brochure-btn { padding: 11px 24px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; background: var(--gold); color: var(--abyss); border-radius: 2px; text-decoration: none; transition: opacity 0.2s; display: flex; align-items: center; gap: 8px; }
  .brochure-btn:hover { opacity: 0.85; }

  /* ─── SPEC TABLE ── */
  .spec-table-section { background: var(--white); }
  .spec-table-wrap { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .spec-group {}
  .spec-group-title { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); padding-bottom: 10px; border-bottom: 2px solid var(--teal); margin-bottom: 0; }
  .spec-row-item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--linen-dark); }
  .spec-row-item:last-child { border-bottom: none; }
  .spec-row-key { font-size: 12px; color: var(--slate); flex-shrink: 0; }
  .spec-row-val { font-size: 12px; color: var(--abyss); font-weight: 500; text-align: right; }

  /* ─── RELATED PRODUCTS ── */
  .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .related-card {
    background: var(--white); border: 1px solid var(--linen-dark);
    padding: 22px 28px 22px 28px; display: grid; grid-template-columns: auto 1px 1fr;
    align-items: center; gap: 0 28px; position: relative;
    text-decoration: none; transition: box-shadow 0.2s, border-color 0.2s;
  }
  .related-card:hover { box-shadow: 0 4px 16px rgba(26,43,44,0.08); border-color: var(--teal); }
  .related-tag { font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; }
  .related-name-block { display: flex; flex-direction: column; justify-content: center; }
  .related-name { font-family: 'Fraunces', serif; font-weight: 300; font-size: 22px; color: var(--abyss); line-height: 1.1; }
  .related-divider { height: 32px; background: var(--linen-dark); width: 1px; }
  .related-right { display: flex; flex-direction: column; justify-content: center; gap: 5px; }
  .related-capacity { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--teal); letter-spacing: 0; }
  .related-price { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--abyss); font-weight: 500; }
  .related-arrow { position: absolute; bottom: 16px; right: 24px; font-size: 11px; color: var(--teal); font-weight: 600; letter-spacing: 0.06em; display: flex; align-items: center; gap: 6px; opacity: 0.7; transition: opacity 0.2s; }
  .related-card:hover .related-arrow { opacity: 1; }

  /* ─── SECTION DIVIDER ── */
  .section-divider { height: 1px; background: var(--linen-dark); margin: 0; }
  .content-section { padding: 80px 72px; }
  .content-section-inner { max-width: 1200px; margin: 0 auto; }

  /* ─── FINAL CTA ── */
  .final-cta {
    background: linear-gradient(135deg, var(--abyss) 0%, var(--teal-deep) 100%);
    padding: 48px 72px;
    display: flex; align-items: center; justify-content: space-between; gap: 48px;
  }
  .final-cta-left {}
  .final-cta-kicker { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .final-cta-headline { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; color: var(--white); }
  .final-cta-headline em { font-style: italic; color: var(--aqua); }
  .final-cta-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 14px; max-width: 600px; line-height: 1.6; }
  .final-cta-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
  .final-cta-btn { padding: 16px 20px; font-size: 14px; font-weight: 500; letter-spacing: 0.04em; background: var(--teal); color: var(--white); border-radius: 2px; text-decoration: none; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
  .final-cta-btn:hover { background: var(--teal-mid); }
  .final-cta-note { font-size: 12px; color: rgba(255,255,255,0.35); text-align: right; }

  /* ─── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.visible { transform: none; }  /* Remove transform on visible to prevent fixed child trapping */

  /* ─── RESPONSIVE ── */
  @media (max-width: 900px) {
    /* ── Nav & fixed chrome ── */
    .ticker-wrap { display: block; height: 32px; }
    .ticker-item { height: 32px; line-height: 32px; font-size: 9px; padding: 0 24px; }
    body { padding-top: 112px; }
    nav { padding: 0 20px; top: 0; height: 64px; }
    .nav-logo svg { height: 32px; }
    .product-quick-link { font-size: 11px !important; }
    .desc-prose a[href] { font-size: 11px !important; }
    .desc-pull-unit { font-size: 9px; letter-spacing: 0.08em; }
    .spec-table-section .section-headline { font-size: 16px !important; }
    .spec-quick-links { flex-direction: column; gap: 18px !important; }
    .nav-links, .nav-social, .nav-social-divider, .nav-cta { display: none; }

    /* ── Breadcrumb ── */
    .breadcrumb { padding: 8px 20px; top: 110px; }
    .breadcrumb-nav-btn { width: 24px; height: 24px; font-size: 16px; }

    /* ── Hero ── */
    .product-hero { grid-template-columns: 1fr; }
    .hero-visual { height: 300px; padding: 20px; }
    .hero-machine { max-width: 75%; max-height: 260px; }
    .hero-info { padding: 28px 20px 36px; }
    .hero-headline { font-size: clamp(28px, 8vw, 38px); margin-bottom: 14px; }
    .hero-tagline { font-size: 14px; margin-bottom: 28px; max-width: 100%; }
    .hero-info { overflow: hidden; }

    /* ── Specs bar — 2-row grid on mobile ── */
    .specs-bar {
      margin: 0 -20px; padding: 0;
      overflow-x: visible; scrollbar-width: unset;
      flex-wrap: wrap;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
    }
    .specs-bar::-webkit-scrollbar { display: unset; }
    .spec-pill {
      min-width: unset; padding: 14px 16px;
      border-left: 1px solid var(--linen-dark);
      border-bottom: 1px solid var(--linen-dark);
    }
    .spec-pill + .spec-pill { border-left: none; }
    .spec-pill:nth-child(1) { border-left: none; }
    .spec-pill:nth-child(4) { border-left: none; }
    .spec-pill:nth-child(4), .spec-pill:nth-child(5) { border-bottom: none; }
    .spec-pill-val { font-size: 12px; }

    /* ── CTA row — stack buttons, show price below ── */
    .hero-config-inline { display: none; }
    .hero-price { display: none; }
    .hero-cta-row {
      margin-top: 28px; gap: 10px;
      flex-direction: column; align-items: stretch;
    }
    .btn-primary { justify-content: center; padding: 15px 24px; }
    .btn-secondary { justify-content: center; padding: 13px 24px; }

    /* ── Mobile finish/plug/price bar ── */
    .hero-price-mobile {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 16px; padding: 14px 0 0;
      border-top: 1px solid var(--linen-dark);
      gap: 12px;
    }
    .hero-price-mobile-config { display: flex; align-items: center; gap: 12px; }
    .hero-price-mobile-group { display: flex; flex-direction: column; gap: 5px; }
    .hero-price-mobile-label {
      font-family: 'Jost', sans-serif; font-size: 8px;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate);
    }
    .hero-price-mobile-swatches { display: flex; gap: 5px; align-items: center; }
    .hero-price-mobile-divider { width: 1px; height: 32px; background: var(--linen-dark); flex-shrink: 0; }
    .hero-price-mobile-amount { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
    .hero-price-mobile-amount .hero-price-label {
      font-family: 'Jost', sans-serif; font-size: 8px;
      letter-spacing: 0.10em; text-transform: uppercase; color: var(--slate);
    }
    .hero-price-mobile-amount .hero-price-val {
      font-family: 'Fraunces', serif; font-weight: 400;
      font-size: 22px; color: var(--abyss); line-height: 1;
    }

    /* ── Content sections ── */
    .content-wrap, .content-section { padding: 44px 20px; }
    .description-block { grid-template-columns: 1fr; gap: 28px; }
    .desc-pull-quote { font-size: 17px; }
    .desc-pull-num { font-size: 40px; }

    /* ── Features ── */
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { padding: 28px 24px; }

    /* ── Finish & config ── */
    .config-section { grid-template-columns: 1fr; gap: 40px; }
    .plug-types { grid-template-columns: 1fr 1fr; }

    /* ── Gallery ── */
    .gallery-row { grid-template-columns: 1fr 1fr; gap: 6px; }
    .gallery-img-main { grid-column: 1 / -1; height: 200px; }
    .gallery-img-secondary { height: 120px; }

    /* ── Specs table ── */
    .spec-table-wrap { grid-template-columns: 1fr; gap: 24px; }

    .related-section { padding: 32px 16px !important; }
    /* ── Related ── */
    .related-grid { grid-template-columns: 1fr; gap: 10px; }
    .related-card {
      display: flex; flex-direction: row; align-items: stretch;
      padding: 18px 20px; gap: 0;
    }
    .related-card > div:first-child { flex-shrink: 0; min-width: 90px; padding-right: 16px; border-right: 1px solid var(--linen-dark); display: flex; flex-direction: column; justify-content: center; }
    .related-name-block { flex-shrink: 0; min-width: 90px; padding-right: 16px; border-right: 1px solid var(--linen-dark); justify-content: center; }
    .related-name { font-size: 18px; }
    .related-divider { display: none; }
    .related-right { flex: 1; padding: 0 14px; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
    .related-capacity { white-space: nowrap; font-size: 11px; }
    .related-price { white-space: nowrap; font-size: 11px; }
    .related-arrow { display: none; }

    /* ── Brochure ── */
    .brochure-row { flex-direction: column; align-items: flex-start; gap: 14px; }
    .brochure-btn { align-self: stretch; justify-content: center; }

    /* ── Final CTA ── */
    .final-cta { padding: 48px 20px; flex-direction: column; gap: 28px; }
    .final-cta-right { align-items: flex-start; width: 100%; }
    .final-cta-btn { align-self: stretch; justify-content: center; font-size: 12px; }
    .final-cta-note { text-align: left; }

    /* ── Footer ── */

  
  /* Title standard — mobile 30px */
  .hero-headline,
  .final-cta-headline,
  .section-headline {
    font-size: 30px !important;
  }
}

/* ── Lightbox ── */
.afa-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 20, 20, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.afa-lightbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50vw;
  max-height: 50vh;
}
.afa-lightbox-inner img {
  max-width: 50vw;
  max-height: 50vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: contain;
}
.afa-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 100000;
  line-height: 1;
}
.afa-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.afa-lightbox-prev,
.afa-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 100000;
}
.afa-lightbox-prev { left: 16px; }
.afa-lightbox-next { right: 16px; }
.afa-lightbox-prev:hover,
.afa-lightbox-next:hover { background: rgba(255,255,255,0.22); }
.afa-lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}
