/* ==========================================================================
   Nuptias Celebration Studio — shared stylesheet
   Loaded by every page. Page-specific overrides go in a <style> block below
   this file's <link>, never inside here.
   ========================================================================== */

:root{
  /* Palette. Rose and gold are split: a decorative tint and a text-safe tone,
     because the original values failed WCAG AA when used for text. */
  --burgundy-900:#4A1018;
  --burgundy-700:#6B1A27;
  --rose-600:#A85260;
  --rose-400:#C87A88;
  --rose-200:#E6B2BA;
  --blush-50:#FAF2F4;
  --paper:#FCFAFA;
  --card:#FFFFFF;
  --ink:#2B1D20;
  --ink-muted:#5C494D;
  --line:#EBD9DD;
  --gold:#C59B27;
  --gold-800:#7A5F0E;
  --sage:#8A9A86;

  --shadow-sm:0 4px 15px rgba(74,16,24,.05);
  --shadow-lg:0 14px 40px rgba(74,16,24,.10);
  --ease:cubic-bezier(.25,.8,.25,1);
  --r:12px;
  --maxw:1200px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:100px}
body{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  background:var(--paper);color:var(--ink);
  line-height:1.7;font-size:15.5px;-webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Cormorant Garamond',Georgia,serif;font-weight:500;color:var(--burgundy-900);letter-spacing:.2px;line-height:1.2}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
img{display:block;width:100%;height:auto}
button{font:inherit}

:focus-visible{outline:3px solid var(--rose-600);outline-offset:2px;border-radius:4px}
.skip-link{position:absolute;left:-9999px;top:0;background:var(--burgundy-900);color:#fff;padding:12px 20px;z-index:2000}
.skip-link:focus{left:0}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}

.container{width:min(92%,var(--maxw));margin-inline:auto}
.section{padding:84px 0}
.section--sm{padding:56px 0}
.section--tint{background:var(--blush-50);border-block:1px solid var(--line)}
.section-head{text-align:center;max-width:680px;margin:0 auto 46px}
.section-head--left{text-align:left;margin-inline:0}
.eyebrow{font-family:'Cormorant Garamond',serif;font-style:italic;color:var(--rose-600);font-size:1.35rem;display:block;margin-bottom:2px}
.section-title{font-size:clamp(2rem,4.2vw,2.6rem)}
.section-intro{color:var(--ink-muted);font-size:.95rem;margin-top:10px}
.lede{font-size:1.02rem;color:var(--ink-muted)}

/* ---------- Top bar & header ---------- */
.topbar{background:var(--burgundy-900);color:var(--blush-50);text-align:center;padding:10px 16px;font-size:.78rem;letter-spacing:1.1px;text-transform:uppercase}
.site-header{background:var(--card);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:900;box-shadow:var(--shadow-sm)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 0;position:relative}
.logo{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;line-height:.95;color:var(--burgundy-900)}
.logo span{display:block;margin-top:6px;font-family:'Plus Jakarta Sans',sans-serif;font-size:.62rem;letter-spacing:3.2px;color:var(--rose-600);font-weight:500}
.nav{display:flex;gap:26px;align-items:center}
.nav a{font-size:.8rem;font-weight:600;letter-spacing:.6px;text-transform:uppercase;transition:color .25s var(--ease)}
.nav a:hover,.nav a[aria-current="page"]{color:var(--burgundy-700)}
.header-actions{display:flex;align-items:center;gap:10px}
.cart-btn{background:var(--blush-50);color:var(--burgundy-900);border:1px solid var(--line);padding:9px 18px;border-radius:30px;font-size:.8rem;font-weight:600;cursor:pointer;transition:all .25s var(--ease);display:flex;align-items:center;gap:7px}
.cart-btn:hover{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}
.cart-count{background:var(--burgundy-700);color:#fff;border-radius:999px;min-width:20px;height:20px;display:grid;place-items:center;font-size:.7rem;padding:0 6px}
.cart-btn:hover .cart-count{background:#fff;color:var(--burgundy-900)}
.nav-toggle{display:none;background:none;border:1px solid var(--line);border-radius:8px;padding:8px 11px;cursor:pointer;color:var(--burgundy-900)}

/* ---------- Buttons ---------- */
.btn{display:inline-block;text-align:center;padding:14px 28px;border-radius:30px;font-size:.82rem;font-weight:700;letter-spacing:.6px;text-transform:uppercase;cursor:pointer;transition:all .25s var(--ease);border:1px solid transparent}
.btn--primary{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}
.btn--primary:hover{background:var(--burgundy-900);border-color:var(--burgundy-900);box-shadow:var(--shadow-lg)}
.btn--ghost{background:rgba(255,255,255,.12);color:#fff;border-color:var(--rose-200);backdrop-filter:blur(4px)}
.btn--ghost:hover{background:#fff;color:var(--burgundy-900)}
.btn--gold{background:var(--gold);color:var(--burgundy-900);border-color:var(--gold)}
.btn--gold:hover{background:#B08A1E;border-color:#B08A1E}
.btn--outline{background:transparent;color:var(--burgundy-900);border-color:var(--line)}
.btn--outline:hover{border-color:var(--burgundy-700);background:var(--blush-50)}
.btn--block{display:block;width:100%}
.btn--sm{padding:10px 20px;font-size:.75rem}

/* ---------- Media with graceful fallback ---------- */
.media{position:relative;overflow:hidden;background:var(--blush-50)}
.media img{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease)}
.media--fallback::after{
  content:attr(data-label);position:absolute;inset:0;
  background:linear-gradient(135deg,var(--blush-50),var(--rose-200));
  display:grid;place-items:center;text-align:center;padding:20px;
  font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.15rem;color:var(--burgundy-900);
}

/* ---------- Hero ---------- */
.hero{position:relative;text-align:center;color:#fff;padding:118px 0 100px;background:var(--burgundy-900)}
.hero-inner{max-width:820px;margin-inline:auto}
.hero .eyebrow{color:var(--rose-200);font-size:1.6rem}
.hero h1{color:#fff;font-size:clamp(2.2rem,5.6vw,3.5rem);margin:8px 0 18px}
.hero p{color:var(--blush-50);font-weight:300;font-size:1.03rem;max-width:620px;margin:0 auto 30px}
.hero-ctas{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ---------- Trust strip ---------- */
.trust{background:var(--card);border-bottom:1px solid var(--line)}
.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px;padding:26px 0;text-align:center}
.trust-item strong{display:block;font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:var(--burgundy-900)}
.trust-item span{font-size:.82rem;color:var(--ink-muted)}

/* ---------- Collection cards ---------- */
.collections{display:grid;grid-template-columns:repeat(auto-fit,minmax(255px,1fr));gap:22px}
.collection{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);transition:all .3s var(--ease);display:block}
.collection:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.collection:hover .media img{transform:scale(1.04)}
.collection .media{height:200px}
.collection-body{padding:20px}
.collection h3{font-size:1.45rem;margin-bottom:8px}
.palette{display:flex;gap:7px;margin-bottom:10px}
.palette span{width:14px;height:14px;border-radius:50%;border:1px solid rgba(0,0,0,.12)}
.collection p{font-size:.87rem;color:var(--ink-muted);line-height:1.55}
.collection-cta{margin-top:12px;font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:var(--burgundy-700)}
.collection-cta::after{content:" →"}
.collection[aria-disabled="true"]{opacity:.9;pointer-events:none}
.collection[aria-disabled="true"] .collection-cta{color:var(--ink-muted)}

/* ---------- Filters ---------- */
.filters{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-bottom:34px}
.filter{background:var(--card);border:1px solid var(--line);padding:10px 22px;border-radius:25px;font-size:.83rem;font-weight:600;cursor:pointer;transition:all .25s var(--ease);color:var(--ink)}
.filter:hover{border-color:var(--rose-400)}
.filter[aria-pressed="true"]{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}

/* ---------- Product cards ---------- */
.products{display:grid;grid-template-columns:repeat(auto-fill,minmax(258px,1fr));gap:24px}
.product{background:var(--card);border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;transition:all .3s var(--ease)}
.product:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.product .media{height:216px}
.product:hover .media img{transform:scale(1.05)}
.product-body{padding:20px;display:flex;flex-direction:column;flex:1}
.kicker{font-size:.68rem;text-transform:uppercase;letter-spacing:1.1px;color:var(--rose-600);font-weight:700;margin-bottom:4px}
.product h3{font-size:1.28rem;margin-bottom:6px}
.product h3 a:hover{color:var(--burgundy-700);text-decoration:underline}
.price{font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:600;color:var(--burgundy-700)}
.price small{display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:.72rem;font-weight:500;color:var(--ink-muted);letter-spacing:.2px;line-height:1.4}
.product p{font-size:.86rem;color:var(--ink-muted);line-height:1.55;margin:10px 0 18px;flex:1}
.card-actions{display:grid;gap:8px}
.add-btn{width:100%;background:var(--blush-50);color:var(--burgundy-900);border:1px solid var(--line);padding:11px 15px;border-radius:20px;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.6px;cursor:pointer;transition:all .25s var(--ease)}
.add-btn:hover{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}
.detail-link{display:block;text-align:center;padding:11px 15px;border-radius:20px;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.6px;background:var(--burgundy-700);color:#fff;transition:all .25s var(--ease)}
.detail-link:hover{background:var(--burgundy-900)}

.badge{position:absolute;top:12px;right:12px;z-index:2;font-size:.66rem;font-weight:700;padding:5px 11px;border-radius:12px;letter-spacing:.7px;text-transform:uppercase}
.badge--quiet{background:rgba(255,255,255,.94);color:var(--burgundy-900);border:1px solid var(--line)}
.badge--hero{background:var(--gold);color:var(--burgundy-900);box-shadow:0 2px 8px rgba(0,0,0,.18)}

/* ---------- Feature banner ---------- */
.feature{color:#fff;text-align:center;padding:92px 0;background:var(--burgundy-900)}
.feature-inner{max-width:820px;margin-inline:auto}
.feature .eyebrow{color:var(--rose-200)}
.feature h2{color:#fff;font-size:clamp(2rem,5vw,3rem);margin-bottom:14px}
.feature p{color:var(--blush-50);font-weight:300;margin-bottom:26px}
.feature-list{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:28px}
.feature-list li{border:1px solid rgba(230,178,186,.45);border-radius:999px;padding:6px 15px;font-size:.8rem}
.feature-ctas{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ---------- Timeline ---------- */
.timeline{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:24px;counter-reset:step}
.step{position:relative;padding-top:8px}
.step::before{counter-increment:step;content:counter(step,decimal-leading-zero);font-family:'Cormorant Garamond',serif;font-size:2.4rem;color:var(--rose-200);display:block;line-height:1}
.step h3{font-size:1.3rem;margin:8px 0 6px}
.step p{font-size:.87rem;color:var(--ink-muted)}
.step-when{font-size:.72rem;text-transform:uppercase;letter-spacing:1px;color:var(--gold-800);font-weight:700}

/* ---------- Packages ---------- */
.packages{display:grid;grid-template-columns:repeat(auto-fit,minmax(275px,1fr));gap:24px;align-items:start}
.package{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:32px 26px;text-align:center;position:relative;box-shadow:var(--shadow-sm);transition:all .3s var(--ease)}
.package:hover{box-shadow:var(--shadow-lg)}
.package--featured{border:2px solid var(--rose-400);padding-top:38px}
.package-flag{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--gold);color:var(--burgundy-900);font-size:.66rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;padding:5px 14px;border-radius:12px;white-space:nowrap}
.package h3{font-size:1.75rem}
.package-price{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:600;color:var(--burgundy-700);line-height:1.1}
.package-save{font-size:.75rem;color:var(--gold-800);font-weight:700;text-transform:uppercase;letter-spacing:.6px;margin-bottom:10px;display:block}
.package>p{font-size:.87rem;color:var(--ink-muted);margin-bottom:6px}
.package-list{text-align:left;margin:18px 0 24px;font-size:.87rem;color:var(--ink-muted)}
.package-list li{padding:7px 0;border-bottom:1px dashed var(--line);display:flex;gap:9px;align-items:flex-start}
.package-list li::before{content:"✓";color:var(--rose-600);font-weight:700;flex-shrink:0}

/* ---------- Samples / split ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.split .media{border-radius:var(--r);height:330px;box-shadow:var(--shadow-lg)}
.split h2{font-size:clamp(1.9rem,4vw,2.4rem);margin-bottom:12px}
.split p{color:var(--ink-muted);margin-bottom:18px}

/* ---------- Quotes ---------- */
.quotes{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:22px}
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:26px;box-shadow:var(--shadow-sm)}
.quote blockquote{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-style:italic;color:var(--burgundy-900);line-height:1.5;margin-bottom:14px}
.quote figcaption{font-size:.8rem;color:var(--ink-muted)}
.quote figcaption strong{display:block;color:var(--ink);font-size:.86rem}

/* ---------- Story ---------- */
.story{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.story .media{border-radius:var(--r);height:420px;box-shadow:var(--shadow-lg)}
.story p{color:var(--ink-muted);margin-bottom:16px;font-size:.95rem;line-height:1.8}
.pullquote{font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-style:italic;color:var(--burgundy-700);padding-left:18px;border-left:3px solid var(--rose-400);margin:20px 0}

/* ---------- FAQ / accordion ---------- */
.faq{max-width:860px;margin-inline:auto}
.faq details{background:#fff;border:1px solid var(--line);border-radius:10px;margin-bottom:12px;overflow:hidden}
.faq summary{cursor:pointer;padding:17px 20px;font-weight:600;font-size:.94rem;color:var(--burgundy-900);display:flex;justify-content:space-between;gap:14px;align-items:center;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-family:'Cormorant Garamond',serif;font-size:1.5rem;color:var(--rose-600);line-height:1}
.faq details[open] summary::after{content:"–"}
.faq details p{padding:0 20px 18px;font-size:.9rem;color:var(--ink-muted)}
.faq details ul{padding:0 20px 18px;font-size:.9rem;color:var(--ink-muted)}
.faq details li{padding-left:16px;position:relative;margin-bottom:6px}
.faq details li::before{content:"—";position:absolute;left:0;color:var(--rose-400)}

/* ---------- Enquiry form ---------- */
.enquiry{background:var(--burgundy-900);color:var(--blush-50)}
.enquiry h2{color:#fff}
.enquiry .eyebrow{color:var(--rose-200)}
.enquiry-form{max-width:720px;margin-inline:auto;background:rgba(255,255,255,.05);border:1px solid rgba(230,178,186,.28);border-radius:var(--r);padding:30px}
.field{margin-bottom:18px}
.field label{display:block;font-size:.78rem;text-transform:uppercase;letter-spacing:1px;margin-bottom:7px;font-weight:600;color:var(--rose-200)}
.field input,.field textarea,.field select{width:100%;padding:12px 14px;border-radius:8px;border:1px solid rgba(230,178,186,.35);background:rgba(255,255,255,.94);color:var(--ink);font:inherit;font-size:.92rem}
.field textarea{min-height:130px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field-hint{font-size:.75rem;color:var(--rose-200);margin-top:6px}
.form-error{color:#FFD5DA;font-size:.8rem;margin-top:6px;display:none}
.field[data-invalid="true"] .form-error{display:block}
.field[data-invalid="true"] input,.field[data-invalid="true"] textarea{border-color:#FF9AA6;border-width:2px}
.form-status{margin-top:16px;font-size:.9rem;padding:14px;border-radius:8px;background:rgba(230,178,186,.16);display:none}
.form-status[data-visible="true"]{display:block}

/* ---------- Footer ---------- */
footer{background:var(--ink);color:var(--blush-50);padding:58px 0 24px;font-size:.87rem}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1.3fr;gap:34px;margin-bottom:38px}
.footer-brand .logo{color:#fff}
.footer-brand p{color:#A79598;font-size:.85rem;margin-top:12px}
footer h3{font-size:1.15rem;color:var(--rose-200);margin-bottom:14px}
.footer-links li{margin-bottom:8px}
.footer-links a{color:#CFC0C2;transition:color .25s var(--ease)}
.footer-links a:hover{color:#fff;text-decoration:underline}
.socials{display:flex;gap:12px;margin-top:14px}
.socials a{width:36px;height:36px;border:1px solid rgba(255,255,255,.22);border-radius:50%;display:grid;place-items:center;transition:all .25s var(--ease)}
.socials a:hover{background:var(--rose-600);border-color:var(--rose-600)}
.socials svg{width:16px;height:16px;fill:currentColor}
.footer-contact p{color:#A79598;font-size:.85rem;margin-bottom:6px}
.footer-contact a{color:var(--rose-200);font-weight:600}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:22px;text-align:center;color:#8F8083;font-size:.78rem}
.footer-bottom a{color:#A79598;text-decoration:underline}

/* ==========================================================================
   Product detail page (PDP)
   ========================================================================== */

.breadcrumb{background:var(--blush-50);border-bottom:1px solid var(--line);padding:12px 0;font-size:.78rem;color:var(--ink-muted)}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.breadcrumb li:not(:last-child)::after{content:"/";margin-left:8px;color:var(--rose-400)}
.breadcrumb a:hover{color:var(--burgundy-700);text-decoration:underline}
.breadcrumb [aria-current]{color:var(--ink);font-weight:600}

/* Persistent collection preference bar */
.collection-bar{display:none;background:var(--burgundy-900);color:#fff;padding:9px 0;font-size:.8rem}
.collection-bar[data-visible="true"]{display:block}
.collection-bar .container{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:center}
.collection-bar strong{color:var(--rose-200);font-weight:600}
.collection-bar button{background:none;border:1px solid rgba(230,178,186,.5);color:#fff;border-radius:20px;padding:3px 12px;font-size:.72rem;cursor:pointer;transition:all .25s var(--ease)}
.collection-bar button:hover{background:#fff;color:var(--burgundy-900)}

.pdp{padding:44px 0 70px}
.pdp-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:52px;align-items:start}

/* Gallery */
.gallery-main{border-radius:var(--r);overflow:hidden;height:460px;box-shadow:var(--shadow-lg);position:relative}
.gallery-thumbs{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin-top:12px}
.thumb{border:2px solid transparent;border-radius:8px;overflow:hidden;height:74px;cursor:pointer;padding:0;background:var(--blush-50);position:relative}
.thumb[aria-current="true"]{border-color:var(--burgundy-700)}
.thumb:hover{border-color:var(--rose-400)}

/* Configurator */
.pdp-head h1{font-size:clamp(2rem,4.4vw,2.8rem);margin:4px 0 10px}
.pdp-head p.lede{margin-bottom:20px}
.price-live{background:var(--blush-50);border:1px solid var(--line);border-radius:var(--r);padding:18px 20px;margin-bottom:22px}
.price-live .total{font-family:'Cormorant Garamond',serif;font-size:2.3rem;font-weight:600;color:var(--burgundy-700);line-height:1.1}
.price-live .per{font-size:.82rem;color:var(--ink-muted)}
.price-live .break-note{font-size:.76rem;color:var(--gold-800);font-weight:700;margin-top:6px}

.opt{margin-bottom:22px;border-bottom:1px solid var(--line);padding-bottom:20px}
.opt:last-of-type{border-bottom:none}
.opt legend,.opt .opt-label{font-size:.74rem;text-transform:uppercase;letter-spacing:1.1px;font-weight:700;color:var(--burgundy-900);margin-bottom:4px;display:block}
.opt-help{font-size:.79rem;color:var(--ink-muted);margin-bottom:11px}
.chips{display:flex;flex-wrap:wrap;gap:9px}
.chip{position:relative;cursor:pointer}
.chip input{position:absolute;opacity:0;width:0;height:0}
.chip span{
  display:block;border:1px solid var(--line);background:#fff;border-radius:10px;
  padding:9px 15px;font-size:.84rem;font-weight:500;transition:all .2s var(--ease);line-height:1.35;
}
.chip span em{display:block;font-style:normal;font-size:.72rem;color:var(--ink-muted);margin-top:1px}
.chip input:checked+span{border-color:var(--burgundy-700);background:var(--burgundy-700);color:#fff;box-shadow:var(--shadow-sm)}
.chip input:checked+span em{color:var(--rose-200)}
.chip input:focus-visible+span{outline:3px solid var(--rose-600);outline-offset:2px}
.chip:hover span{border-color:var(--rose-400)}

.chip--swatch span{padding-left:38px}
.chip--swatch span::before{content:"";position:absolute;left:11px;top:50%;transform:translateY(-50%);width:19px;height:19px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:var(--sw)}

.addons{display:grid;gap:9px}
.addon{display:flex;gap:11px;align-items:flex-start;border:1px solid var(--line);background:#fff;border-radius:10px;padding:11px 14px;cursor:pointer;transition:all .2s var(--ease)}
.addon:hover{border-color:var(--rose-400)}
.addon:has(input:checked){border-color:var(--burgundy-700);background:var(--blush-50)}
.addon input{margin-top:4px;accent-color:var(--burgundy-700);width:16px;height:16px;flex-shrink:0}
.addon-text{flex:1}
.addon-text strong{display:block;font-size:.87rem;font-weight:600}
.addon-text span{font-size:.78rem;color:var(--ink-muted)}
.addon-price{font-family:'Cormorant Garamond',serif;font-weight:600;color:var(--burgundy-700);font-size:1rem;white-space:nowrap}

.qty-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.qty-stepper{display:flex;align-items:center;gap:8px}
.qty-stepper button{width:36px;height:36px;border:1px solid var(--line);background:var(--blush-50);border-radius:50%;cursor:pointer;color:var(--burgundy-900);font-weight:700;font-size:1.1rem;line-height:1}
.qty-stepper button:hover{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}
.qty-stepper input{width:82px;text-align:center;padding:9px;border:1px solid var(--line);border-radius:8px;font:inherit}
.qty-presets{display:flex;gap:7px;flex-wrap:wrap}
.qty-presets button{border:1px solid var(--line);background:#fff;border-radius:20px;padding:6px 13px;font-size:.76rem;cursor:pointer;transition:all .2s var(--ease)}
.qty-presets button:hover{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}

.pdp-cta{position:sticky;bottom:0;background:#fff;padding:16px 0 4px;border-top:1px solid var(--line);margin-top:8px;z-index:10}
.pdp-reassure{display:flex;flex-wrap:wrap;gap:14px;margin-top:14px;font-size:.78rem;color:var(--ink-muted)}
.pdp-reassure span::before{content:"✓ ";color:var(--rose-600);font-weight:700}

/* Spec table */
.spec-table{width:100%;border-collapse:collapse;font-size:.88rem}
.spec-table th,.spec-table td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--line);vertical-align:top}
.spec-table th{width:38%;color:var(--burgundy-900);font-weight:600;background:var(--blush-50)}
.spec-table td{color:var(--ink-muted)}

/* Included / excluded lists */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.tick-list li{padding:8px 0 8px 26px;position:relative;font-size:.89rem;color:var(--ink-muted);border-bottom:1px dashed var(--line)}
.tick-list li::before{content:"✓";position:absolute;left:0;color:var(--rose-600);font-weight:700}
.tick-list--alt li::before{content:"+";color:var(--gold-800)}

/* Pairs with */
.pairs{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px}
.pair{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);transition:all .3s var(--ease)}
.pair:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pair .media{height:140px}
.pair-body{padding:14px 16px}
.pair-body h3{font-size:1.1rem}
.pair-body p{font-size:.78rem;color:var(--ink-muted)}

/* ==========================================================================
   Collection page
   ========================================================================== */

.coll-hero{padding:70px 0;background:var(--blush-50);border-bottom:1px solid var(--line)}
.coll-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:center}
.coll-hero h1{font-size:clamp(2.2rem,5vw,3.2rem);margin:6px 0 14px}
.coll-hero .media{border-radius:var(--r);height:380px;box-shadow:var(--shadow-lg)}

.ink-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:16px}
.ink{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm)}
.ink-swatch{height:84px}
.ink-body{padding:13px 15px}
.ink-body strong{display:block;font-family:'Cormorant Garamond',serif;font-size:1.15rem;color:var(--burgundy-900)}
.ink-body span{font-size:.75rem;color:var(--ink-muted);letter-spacing:.5px}

.specimen{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:34px;box-shadow:var(--shadow-sm)}
.specimen-row{border-bottom:1px dashed var(--line);padding:18px 0}
.specimen-row:last-child{border-bottom:none}
.specimen-label{font-size:.7rem;text-transform:uppercase;letter-spacing:1.2px;color:var(--rose-600);font-weight:700;margin-bottom:6px}
.specimen-sample{color:var(--burgundy-900);line-height:1.25}
.specimen-meta{font-size:.76rem;color:var(--ink-muted);margin-top:6px}

.suite-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:18px}
.suite-item{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);transition:all .3s var(--ease)}
.suite-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.suite-item .media{height:170px}
.suite-body{padding:15px 17px}
.suite-body h3{font-size:1.15rem;margin-bottom:3px}
.suite-body p{font-size:.79rem;color:var(--ink-muted)}
.suite-body .from{font-family:'Cormorant Garamond',serif;color:var(--burgundy-700);font-weight:600;font-size:1rem;margin-top:6px;display:block}

.venue-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:20px}
.venue{border-left:3px solid var(--rose-400);padding-left:16px}
.venue h3{font-size:1.2rem;margin-bottom:4px}
.venue p{font-size:.86rem;color:var(--ink-muted)}

/* ==========================================================================
   Basket drawer / toast (injected by JS on every page)
   ========================================================================== */

.overlay{position:fixed;inset:0;background:rgba(43,29,32,.5);opacity:0;visibility:hidden;transition:all .3s var(--ease);z-index:1000}
.overlay[data-open="true"]{opacity:1;visibility:visible}
.drawer{position:fixed;top:0;right:0;height:100dvh;width:min(420px,100%);background:#fff;z-index:1001;transform:translateX(100%);transition:transform .32s var(--ease);display:flex;flex-direction:column;box-shadow:-8px 0 40px rgba(74,16,24,.2)}
.drawer[data-open="true"]{transform:translateX(0)}
.drawer-head{display:flex;justify-content:space-between;align-items:center;padding:20px;border-bottom:1px solid var(--line)}
.drawer-head h2{font-size:1.5rem}
.drawer-close{background:none;border:none;font-size:1.6rem;line-height:1;cursor:pointer;color:var(--ink-muted);padding:4px 8px}
.drawer-body{flex:1;overflow-y:auto;padding:18px 20px}
.drawer-empty{text-align:center;padding:50px 10px;color:var(--ink-muted)}
.drawer-empty p{font-size:.9rem;margin:10px 0 20px}
.line{display:grid;grid-template-columns:1fr auto;gap:8px;padding:15px 0;border-bottom:1px solid var(--line)}
.line h3{font-size:1.08rem}
.line-meta{font-size:.75rem;color:var(--ink-muted);line-height:1.5}
.line-spec{font-size:.74rem;color:var(--ink-muted);background:var(--blush-50);border-radius:6px;padding:6px 9px;margin:6px 0;line-height:1.5}
.line-total{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;color:var(--burgundy-700);text-align:right;white-space:nowrap}
.qty{display:flex;align-items:center;gap:8px;margin-top:8px}
.qty button{width:28px;height:28px;border:1px solid var(--line);background:var(--blush-50);border-radius:50%;cursor:pointer;color:var(--burgundy-900);font-weight:700;line-height:1}
.qty button:hover{background:var(--burgundy-700);color:#fff;border-color:var(--burgundy-700)}
.qty input{width:60px;text-align:center;padding:4px;border:1px solid var(--line);border-radius:6px;font:inherit;font-size:.85rem}
.line-remove{background:none;border:none;color:var(--rose-600);font-size:.76rem;text-decoration:underline;cursor:pointer;padding:0;margin-top:6px;text-align:left}
.drawer-foot{border-top:1px solid var(--line);padding:20px;background:var(--blush-50)}
.subtotal{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:6px}
.subtotal strong{font-family:'Cormorant Garamond',serif;font-size:1.7rem;color:var(--burgundy-700)}
.drawer-note{font-size:.75rem;color:var(--ink-muted);margin-bottom:14px}

.toast{position:fixed;left:50%;bottom:26px;transform:translate(-50%,160%);background:var(--burgundy-900);color:#fff;padding:13px 22px;border-radius:30px;font-size:.86rem;font-weight:600;z-index:1200;box-shadow:var(--shadow-lg);transition:transform .32s var(--ease);max-width:90vw;text-align:center}
.toast[data-visible="true"]{transform:translate(-50%,0)}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width:992px){
  .story,.split,.pdp-grid,.coll-hero-grid,.two-col{grid-template-columns:1fr;gap:32px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .nav-toggle{display:block}
  .site-header{position:relative}
  .nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;gap:0;padding:8px 0;border-bottom:1px solid var(--line);box-shadow:var(--shadow-lg);z-index:50}
  .nav[data-open="true"]{display:flex}
  .nav li{width:100%;border-bottom:1px solid var(--line)}
  .nav li:last-child{border-bottom:none}
  .nav a{display:block;padding:14px 22px}
  .gallery-main{height:340px}
  .pdp-cta{position:static;border-top:none;padding-top:0}
}

@media (max-width:640px){
  .section{padding:56px 0}
  .hero{padding:80px 0 66px}
  .story .media,.split .media,.coll-hero .media{height:240px}
  .gallery-main{height:260px}
  .gallery-thumbs{grid-template-columns:repeat(4,1fr)}
  .thumb{height:60px}
  .field-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .logo{font-size:1.7rem}
  .btn{width:100%}
  .hero-ctas,.feature-ctas{flex-direction:column}
  .specimen{padding:22px}
  .pdp-cta{position:sticky;bottom:0;background:#fff;border-top:1px solid var(--line);padding:14px 0;box-shadow:0 -6px 20px rgba(74,16,24,.08)}
}

/* ==========================================================================
   Added for the six-product range: lead-time notices, tier tables and the
   personalisation dialog that captures couple names, dates and wording.
   ========================================================================== */

/* Lead time */
.leadtime-pill{
  display:inline-flex;align-items:center;gap:7px;background:var(--blush-50);
  border:1px solid var(--line);border-radius:999px;padding:6px 14px;
  font-size:.76rem;font-weight:600;color:var(--burgundy-900);letter-spacing:.3px;
}
.leadtime-pill::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--gold);flex-shrink:0}
.leadtime-banner{
  background:var(--burgundy-900);color:var(--blush-50);text-align:center;
  padding:11px 16px;font-size:.82rem;letter-spacing:.3px;
}
.leadtime-banner strong{color:var(--rose-200)}
.product .leadtime-note{font-size:.72rem;color:var(--ink-muted);margin:0 0 12px;flex:0}

/* Tier table on cards and in the dialog */
.tiers-table{width:100%;border-collapse:collapse;font-size:.78rem;margin:2px 0 12px}
.tiers-table th,.tiers-table td{padding:5px 8px;text-align:left;border-bottom:1px dashed var(--line)}
.tiers-table th{color:var(--burgundy-900);font-weight:600;background:var(--blush-50)}
.tiers-table td{color:var(--ink-muted)}
.tiers-table tr:last-child td,.tiers-table tr:last-child th{border-bottom:none}
.tiers-table .is-active td,.tiers-table .is-active th{background:var(--blush-50);color:var(--burgundy-700);font-weight:700}

/* Personalisation dialog */
.dlg{
  position:fixed;inset:0;z-index:1100;display:none;
  align-items:flex-start;justify-content:center;padding:24px 16px;overflow-y:auto;
  background:rgba(43,29,32,.55);
}
.dlg[data-open="true"]{display:flex}
.dlg-panel{
  background:#fff;border-radius:var(--r);width:min(620px,100%);
  box-shadow:0 24px 70px rgba(74,16,24,.3);margin:auto;overflow:hidden;
}
.dlg-head{padding:22px 26px 16px;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.dlg-head h2{font-size:1.6rem;line-height:1.15}
.dlg-head p{font-size:.82rem;color:var(--ink-muted);margin-top:4px}
.dlg-close{background:none;border:none;font-size:1.7rem;line-height:1;cursor:pointer;color:var(--ink-muted);padding:0 4px}
.dlg-body{padding:22px 26px;max-height:min(62vh,640px);overflow-y:auto}
.dlg-foot{padding:18px 26px 22px;border-top:1px solid var(--line);background:var(--blush-50)}

.dlg .field{margin-bottom:16px}
.dlg .field label{
  display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:1px;
  font-weight:700;color:var(--burgundy-900);margin-bottom:6px;
}
.dlg .field .req{color:var(--rose-600)}
.dlg .field input,.dlg .field select,.dlg .field textarea{
  width:100%;padding:11px 13px;border:1px solid var(--line);border-radius:8px;
  font:inherit;font-size:.9rem;background:#fff;color:var(--ink);
}
.dlg .field textarea{min-height:82px;resize:vertical}
.dlg .field input:focus,.dlg .field select:focus,.dlg .field textarea:focus{border-color:var(--rose-400);outline-offset:1px}
.dlg .field .hint{font-size:.74rem;color:var(--ink-muted);margin-top:5px}
.dlg .field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.dlg .field[data-invalid="true"] input,.dlg .field[data-invalid="true"] textarea{border-color:#C0392B;border-width:2px}
.dlg .err{display:none;font-size:.76rem;color:#A93226;margin-top:5px;font-weight:600}
.dlg .field[data-invalid="true"] .err{display:block}

.dlg-price{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:4px}
.dlg-price strong{font-family:'Cormorant Garamond',serif;font-size:2rem;color:var(--burgundy-700);line-height:1}
.dlg-per{font-size:.78rem;color:var(--ink-muted);margin-bottom:14px}
.dlg-lead{font-size:.75rem;color:var(--gold-800);font-weight:700;margin-bottom:14px}

@media (max-width:640px){
  .dlg{padding:0}
  .dlg-panel{border-radius:0;min-height:100dvh}
  .dlg-body{max-height:none}
  .dlg .field-row{grid-template-columns:1fr}
}

/* Real-photography feature block */
.showcase{display:grid;grid-template-columns:.9fr 1.1fr;gap:48px;align-items:center}
.showcase .media{border-radius:var(--r);box-shadow:var(--shadow-lg);height:520px}
.showcase h2{font-size:clamp(1.9rem,4vw,2.5rem);margin-bottom:14px}
.showcase p{color:var(--ink-muted);margin-bottom:16px}
@media (max-width:992px){.showcase{grid-template-columns:1fr;gap:28px}.showcase .media{height:340px}}

/* Range grid — six products, larger cards */
.range{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px}
.range .product .media{height:250px}
.price-from{font-size:.7rem;text-transform:uppercase;letter-spacing:1px;color:var(--ink-muted);font-weight:600;display:block}

/* ==========================================================================
   Real product photography.
   The stock placeholders are landscape and crop happily. Our own photographs
   are square (the sticker) and portrait (the favour bottle), so they must be
   shown whole — a cropped circular sticker loses the wording around its edge.
   Targeted by filename so no HTML changes are needed when photos are swapped.
   ========================================================================== */

.media img[src*="personalised-stickers"],
.media img[src*="wedding-favours"]{
  object-fit:contain;
}

.media:has(img[src*="personalised-stickers"]),
.media:has(img[src*="wedding-favours"]){
  background:var(--blush-50);
  padding:14px;
}

/* Give the two portrait/square cards a little more height so they don't
   sit in a letterboxed sliver. */
.range .product .media:has(img[src*="personalised-stickers"]),
.range .product .media:has(img[src*="wedding-favours"]){
  height:300px;
}

/* The showcase blocks are large enough already — just remove the crop. */
.showcase .media:has(img[src*="wedding-favours"]){height:560px;padding:20px}
.showcase .media:has(img[src*="personalised-stickers"]){padding:24px}

/* Fallback for browsers without :has() — no padded backdrop, but still uncropped */
@supports not selector(:has(*)){
  .media img[src*="personalised-stickers"],
  .media img[src*="wedding-favours"]{background:var(--blush-50)}
}

/* ==========================================================================
   Variant chooser — the grid of styles on a product page
   ========================================================================== */

.variants{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:20px}
.variant{
  background:var(--card);border:1px solid var(--line);border-radius:var(--r);
  overflow:hidden;box-shadow:var(--shadow-sm);text-align:left;padding:0;
  cursor:pointer;transition:all .28s var(--ease);display:flex;flex-direction:column;
  font:inherit;color:inherit;width:100%;
}
.variant:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--rose-400)}
.variant .media{height:210px}
.variant-body{padding:16px 18px 18px;display:flex;flex-direction:column;flex:1}
.variant-body h3{font-size:1.2rem;margin-bottom:4px}
.variant-price{font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-weight:600;color:var(--burgundy-700);line-height:1.1}
.variant-price small{display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:.7rem;font-weight:500;color:var(--ink-muted);letter-spacing:.2px}
.variant-body p{font-size:.83rem;color:var(--ink-muted);line-height:1.5;margin:8px 0 14px;flex:1}
.variant-cta{
  font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.8px;
  color:var(--burgundy-700);display:flex;align-items:center;gap:6px;
}
.variant-cta::after{content:"→";transition:transform .25s var(--ease)}
.variant:hover .variant-cta::after{transform:translateX(4px)}
.variant-flag{
  position:absolute;top:12px;left:12px;z-index:2;background:var(--gold);
  color:var(--burgundy-900);font-size:.64rem;font-weight:700;letter-spacing:.7px;
  text-transform:uppercase;padding:4px 10px;border-radius:12px;
}

/* Product page intro */
.p-intro{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:center;padding:46px 0 8px}
.p-intro .media{border-radius:var(--r);box-shadow:var(--shadow-lg);height:460px;background:var(--blush-50)}
.p-intro h1{font-size:clamp(2.1rem,4.6vw,3rem);margin:6px 0 14px}
.p-intro .price{font-size:1.6rem;margin-bottom:14px;display:block}
.p-intro .lede{margin-bottom:18px}
.p-facts{display:grid;gap:9px;margin:20px 0 24px}
.p-facts li{font-size:.87rem;color:var(--ink-muted);padding-left:24px;position:relative}
.p-facts li::before{content:"✓";position:absolute;left:0;color:var(--rose-600);font-weight:700}
@media (max-width:992px){.p-intro{grid-template-columns:1fr;gap:26px;padding-top:28px}.p-intro .media{height:320px}}

/* ==========================================================================
   Range cards: shop-window treatment.
   Photo, name, one line, one action. Detail belongs on the product page.
   ========================================================================== */

.range{grid-template-columns:repeat(auto-fill,minmax(275px,1fr));gap:22px}
.range .product .media{height:215px}
.range .product-body{padding:15px 18px 18px}
.range .product .kicker{margin-bottom:2px;font-size:.65rem}
.range .product h3{font-size:1.2rem;margin-bottom:7px}
.range .product p{font-size:.85rem;line-height:1.45;margin:0 0 14px}
.range .product .card-actions{margin-top:auto}
.range .detail-link{padding:10px 14px;font-size:.74rem}

/* The square sticker and portrait bottle no longer need extra height now the
   cards are shorter — keep them uncropped but in proportion with the others. */
.range .product .media:has(img[src*="personalised-stickers"]),
.range .product .media:has(img[src*="wedding-favours"]){height:250px;padding:10px}

/* ==========================================================================
   Category card alignment.
   The earlier rule gave the two real photographs a taller frame than the
   stock ones, which pushed their text down and broke the row. Every card in
   the grid now uses one height; only the fit changes.
   ========================================================================== */

.range .product .media,
.range .product .media:has(img[src*="personalised-stickers"]),
.range .product .media:has(img[src*="wedding-favours"]){
  height:235px;
}

/* Uncropped photographs still get breathing room, but not extra height */
.range .product .media:has(img[src*="personalised-stickers"]),
.range .product .media:has(img[src*="wedding-favours"]){
  padding:12px;
}

/* One line of description on every card keeps the buttons on the same line
   even before flex alignment kicks in */
.range .product p{min-height:2.6em}

/* ==========================================================================
   Five categories across on desktop.
   Explicit column counts rather than auto-fill, so the row never breaks into
   an awkward 4 + 1 as the range grows.
   ========================================================================== */

.range{grid-template-columns:repeat(5,1fr);gap:18px}
.range .product .media,
.range .product .media:has(img[src*="personalised-stickers"]),
.range .product .media:has(img[src*="wedding-favours"]){height:200px}
.range .product-body{padding:14px 15px 16px}
.range .product h3{font-size:1.12rem;margin-bottom:6px}
.range .product p{font-size:.81rem;min-height:2.4em;margin-bottom:12px}
.range .detail-link{padding:9px 10px;font-size:.7rem;letter-spacing:.4px}

@media (max-width:1160px){ .range{grid-template-columns:repeat(3,1fr);gap:20px} }
@media (max-width:820px){  .range{grid-template-columns:repeat(2,1fr)} }
@media (max-width:480px){  .range{grid-template-columns:1fr} .range .product .media{height:230px} }

/* Two product grids on one category page */
.section-subhead{
  display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;
  border-bottom:1px solid var(--line);padding-bottom:12px;margin-bottom:26px;
}
.section-subhead h2{font-size:clamp(1.6rem,3.4vw,2.1rem)}
.section-subhead .from{
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.78rem;font-weight:600;
  color:var(--ink-muted);letter-spacing:.3px;
}
.section-subhead p{width:100%;font-size:.9rem;color:var(--ink-muted);margin-top:2px}

/* ==========================================================================
   Navigation list.
   The links were <li> elements with no <ul> around them, which is invalid
   HTML and made browsers draw default bullets between every item. They now
   sit in a proper list; these rules carry the layout across to it.
   ========================================================================== */

.nav-list{
  display:flex;align-items:center;gap:26px;
  list-style:none;margin:0;padding:0;
}
.nav-list li{list-style:none;margin:0}

@media (max-width:992px){
  .nav-list{flex-direction:column;gap:0;width:100%;align-items:stretch}
  .nav-list li{width:100%;border-bottom:1px solid var(--line)}
  .nav-list li:last-child{border-bottom:none}
}

/* ==========================================================================
   "What's on this page" jump cards.
   Used where a category holds more than one product, so the second one is
   visible without scrolling past the first.
   ========================================================================== */

.jump{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
  margin:8px auto 4px;padding-bottom:8px;
}
.jump-card{
  display:flex;align-items:center;gap:16px;
  background:var(--card);border:1px solid var(--line);border-left:4px solid var(--rose-400);
  border-radius:var(--r);padding:18px 22px;box-shadow:var(--shadow-sm);
  transition:all .25s var(--ease);
}
.jump-card:hover{
  border-left-color:var(--burgundy-700);box-shadow:var(--shadow-lg);
  transform:translateX(3px);
}
.jump-num{
  font-family:'Cormorant Garamond',serif;font-size:2rem;color:var(--rose-200);
  line-height:1;flex-shrink:0;
}
.jump-card:hover .jump-num{color:var(--rose-400)}
.jump-text{display:flex;flex-direction:column;gap:2px}
.jump-text strong{
  font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-weight:500;
  color:var(--burgundy-900);
}
.jump-text span{font-size:.8rem;color:var(--ink-muted);line-height:1.4}

.section-more{
  text-align:center;margin-top:30px;padding-top:22px;border-top:1px solid var(--line);
}
.section-more a{
  font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.25rem;
  color:var(--burgundy-700);
}
.section-more a:hover{text-decoration:underline}

@media (max-width:760px){ .jump{grid-template-columns:1fr;gap:12px} }

/* ==========================================================================
   Coming soon treatment
   ========================================================================== */

.badge--soon{
  position:absolute;top:12px;left:12px;right:auto;
  background:var(--gold);color:var(--burgundy-900);
  font-size:.64rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;
  padding:5px 12px;border-radius:12px;z-index:3;
}
.product--soon .media{position:relative}
.detail-link--soon{background:var(--ink-muted)}
.detail-link--soon:hover{background:var(--burgundy-900)}

.notice{
  background:var(--blush-50);border-bottom:1px solid var(--line);
  padding:14px 0;font-size:.86rem;color:var(--ink-muted);text-align:center;
}
.notice strong{color:var(--burgundy-900)}

/* A media panel with no photograph yet still needs its own height */
.media--fallback:empty,.media--fallback{min-height:120px}

/* ==========================================================================
   Shop dropdown.
   Categories used to sit flat in the bar, which stopped scaling at five.
   Adding a category is now one line in the dropdown, not a layout problem.
   ========================================================================== */

.has-dropdown{position:relative}

.nav-trigger{
  background:none;border:none;cursor:pointer;padding:0;
  font-size:.8rem;font-weight:600;letter-spacing:.6px;text-transform:uppercase;
  color:var(--ink);display:inline-flex;align-items:center;gap:7px;
  transition:color .25s var(--ease);font-family:inherit;
}
.nav-trigger:hover,.nav-trigger[aria-expanded="true"],.nav-trigger[aria-current="true"]{color:var(--burgundy-700)}

.chev{
  width:7px;height:7px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translate(-2px,-2px);transition:transform .25s var(--ease);
}
.nav-trigger[aria-expanded="true"] .chev{transform:rotate(-135deg) translate(-3px,-3px)}

.dropdown{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(-6px);
  background:#fff;border:1px solid var(--line);border-radius:var(--r);
  box-shadow:var(--shadow-lg);padding:8px;min-width:250px;list-style:none;
  opacity:0;visibility:hidden;transition:all .22s var(--ease);z-index:950;
}
.dropdown::before{ /* hover bridge, so the menu doesn't close in the gap */
  content:"";position:absolute;top:-14px;left:0;right:0;height:14px;
}
.has-dropdown:hover .dropdown,
.nav-trigger[aria-expanded="true"] + .dropdown{
  opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);
}
.dropdown li{width:100%}
.dropdown a{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:11px 14px;border-radius:8px;font-size:.85rem;font-weight:500;
  text-transform:none;letter-spacing:0;color:var(--ink);transition:all .18s var(--ease);
}
.dropdown a:hover,.dropdown a[aria-current="page"]{background:var(--blush-50);color:var(--burgundy-700)}
.dropdown-all{border-top:1px solid var(--line);margin-top:6px;padding-top:6px}
.dropdown-all a{font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.7px;color:var(--burgundy-700)}

.soon-tag{
  background:var(--gold);color:var(--burgundy-900);font-size:.6rem;font-weight:700;
  letter-spacing:.6px;text-transform:uppercase;padding:2px 7px;border-radius:10px;flex-shrink:0;
}

@media (max-width:992px){
  /* On mobile the menu is already a stacked panel — show the categories inline
     rather than hiding them behind a second tap. */
  .has-dropdown{position:static}
  .nav-trigger{
    display:flex;width:100%;justify-content:space-between;
    padding:14px 22px;border-bottom:1px solid var(--line);
  }
  .dropdown{
    position:static;transform:none;opacity:1;visibility:visible;
    box-shadow:none;border:none;border-radius:0;padding:0;min-width:0;
    background:var(--blush-50);display:none;
  }
  .nav-trigger[aria-expanded="true"] + .dropdown{display:block;transform:none}
  .has-dropdown:hover .dropdown{opacity:1;visibility:visible}
  .dropdown a{padding:13px 34px;border-radius:0;justify-content:flex-start;gap:8px}
  .dropdown-all{border-top:1px solid var(--line);margin:0;padding:0}
}

/* Card images: anchor the crop to the top rather than the centre, so when a
   frame is shorter than the photo it keeps the composition (names, headings)
   instead of slicing through the middle of it. */
.range .product .media img{object-position:top center}

/* ==========================================================================
   Two-step basket drawer.
   The quote request used to live on a different page, which felt like a bug
   mid-flow. It is now step two of the drawer, with anything already given
   during personalisation carried across.
   ========================================================================== */

.drawer-head{position:relative}
.drawer-back{
  background:none;border:none;cursor:pointer;font-size:1.15rem;line-height:1;
  color:var(--ink-muted);padding:4px 10px 4px 0;transition:color .2s var(--ease);
}
.drawer-back:hover{color:var(--burgundy-700)}

.drawer-steps{
  display:flex;list-style:none;margin:0;padding:0;
  border-bottom:1px solid var(--line);background:var(--blush-50);
}
.drawer-steps li{
  flex:1;text-align:center;padding:11px 8px;font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.9px;color:var(--ink-muted);
  border-bottom:2px solid transparent;
}
.drawer-steps li[aria-current="step"]{color:var(--burgundy-700);border-bottom-color:var(--burgundy-700)}

.drawer-lead{font-size:.9rem;color:var(--ink-muted);margin-bottom:14px}
.drawer-carried{
  background:var(--blush-50);border:1px solid var(--line);border-radius:8px;
  padding:10px 13px;font-size:.83rem;color:var(--ink-muted);margin-bottom:18px;
}
.drawer-carried strong{color:var(--burgundy-900)}

#nxDetailsBody .field{margin-bottom:15px}
#nxDetailsBody label{
  display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:1px;
  font-weight:700;color:var(--burgundy-900);margin-bottom:6px;
}
#nxDetailsBody .req{color:var(--rose-600)}
#nxDetailsBody .opt{
  color:var(--ink-muted);font-weight:500;text-transform:none;letter-spacing:0;font-size:.72rem;
}
#nxDetailsBody input,#nxDetailsBody textarea{
  width:100%;padding:11px 13px;border:1px solid var(--line);border-radius:8px;
  font:inherit;font-size:.9rem;background:#fff;color:var(--ink);
}
#nxDetailsBody textarea{min-height:76px;resize:vertical}
#nxDetailsBody .hint{font-size:.74rem;color:var(--ink-muted);margin-top:5px}
#nxDetailsBody .err{display:none;font-size:.76rem;color:#A93226;font-weight:600;margin-top:5px}
#nxDetailsBody .field[data-invalid="true"] .err{display:block}
#nxDetailsBody .field[data-invalid="true"] input{border-color:#C0392B;border-width:2px}

.drawer-status{font-size:.83rem;margin-top:12px;color:var(--ink-muted)}
.drawer-status.is-error{color:#A93226;font-weight:600}
.drawer-status a{text-decoration:underline;color:var(--burgundy-700)}

.drawer-done{text-align:center;padding:34px 6px}
.drawer-tick{
  width:56px;height:56px;border-radius:50%;background:var(--blush-50);
  border:2px solid var(--rose-400);color:var(--burgundy-700);
  display:grid;place-items:center;font-size:1.6rem;margin:0 auto 18px;
}
.drawer-done h3{font-size:1.6rem;margin-bottom:10px}
.drawer-done p{font-size:.9rem;color:var(--ink-muted);margin-bottom:12px}
.drawer-done-note{font-size:.78rem;color:var(--gold-800);font-weight:700;margin-bottom:22px}
