/*
Theme Name: Nuvaero
Theme URI: https://www.nuvaero.nl
Author: Nuvaero
Description: Officieel Nuvaero WordPress-thema met eigen paginatemplates per product (Neustrips Curve Shape, Neustrips Wing Shape, Mondstrips), gedeelde header/footer, winkelwagen en lightbox.
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
Text Domain: nuvaero
*/

:root{
  --bg:#eef5fb;
  --bg-card:#ffffff;
  --navy:#0e2647;
  --navy-deep:#081733;
  --navy-2:#2456a3;
  --gold:#d9a53f;
  --ink:#0c0f14;
  --slate:#4f5f77;
  --slate-soft:#8291a6;
  --line: rgba(14,38,71,0.12);
  --line-dark: rgba(255,255,255,0.12);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{background:var(--gold); color:#fff;}
a{color:inherit;}
img{max-width:100%; display:block;}
.mono{font-family:'IBM Plex Mono', monospace; letter-spacing:0.02em;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- LAYOUT SHELL ---------- */
.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce-bar{
  background:var(--gold); color:var(--navy-deep); text-align:center;
  font-family:'IBM Plex Mono'; font-size:12px; font-weight:600; letter-spacing:0.02em;
  padding:9px 16px;
}

/* ---------- TOPBAR ---------- */
header.nav{
  position:sticky; top:0; z-index:70;
  background:rgba(8,23,51,0.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:16px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav-logo{
  display:flex; align-items:center; gap:10px;
  font-family:'Fraunces', serif; font-weight:600; font-size:20px; color:#fff;
  letter-spacing:0.01em; flex-shrink:0; text-decoration:none;
}
.nav-links{
  display:flex; align-items:center; gap:6px; list-style:none; margin:0; padding:0; flex:1;
}
.nav-links > li{ position:relative; }
.nav-links > li > a{
  display:inline-flex; align-items:center; gap:6px;
  text-decoration:none; color:rgba(255,255,255,0.68); background:none; border:none;
  font-size:14px; font-weight:500; font-family:'Inter'; padding:10px 14px; border-radius:8px; cursor:pointer;
  transition:background 0.2s ease, color 0.2s ease;
}
.nav-links > li > a:hover, .nav-links > li > a.is-active{ color:#fff; background:rgba(255,255,255,0.07); }

/* Hover dropdown (currently only "Neustrips" → Curve Shape / Wing Shape) */
.nav-links .sub-menu{
  position:absolute; top:calc(100% + 10px); left:0; min-width:190px;
  background:#fff; border-radius:14px; padding:8px; margin:0; list-style:none;
  box-shadow:0 30px 60px -20px rgba(0,0,0,0.45);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index:80;
}
.nav-links > li.menu-item-has-children:hover > .sub-menu,
.nav-links > li.menu-item-has-children:focus-within > .sub-menu{
  opacity:1; visibility:visible; transform:translateY(0);
}
.nav-links .sub-menu a{
  display:block; padding:11px 14px; border-radius:8px; color:var(--navy); text-decoration:none;
  font-size:14px; font-weight:500; white-space:nowrap; transition:background 0.2s ease;
}
.nav-links .sub-menu a:hover{ background:var(--bg); }

.nav-right{display:flex; align-items:center; gap:10px; flex-shrink:0;}

.nav-cta{
  background:var(--gold); color:var(--navy-deep); border:none; padding:11px 22px; border-radius:100px;
  font-family:'Inter'; font-weight:700; font-size:13.5px; cursor:pointer; letter-spacing:0.01em;
  transition:transform 0.2s ease, background 0.2s ease; text-decoration:none; flex-shrink:0;
}
.nav-cta:hover{background:#e8b559; transform:translateY(-1px);}

.cart-btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%; border:none; background:rgba(255,255,255,0.08);
  color:#fff; cursor:pointer; transition:background 0.2s ease;
}
.cart-btn:hover{background:rgba(255,255,255,0.16);}
.cart-badge{
  position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; padding:0 4px;
  border-radius:100px; background:var(--gold); color:var(--navy-deep);
  font-family:'IBM Plex Mono'; font-size:10px; font-weight:700; line-height:18px; text-align:center;
}
.cart-badge[hidden]{display:none;}

.nav-mobile-toggle{
  display:none; background:none; border:none; color:#fff; cursor:pointer; padding:6px;
}

/* Mobile dropdown panel (built from nav-links, shown under 920px) */
.nav-mobile-panel{
  display:none; position:absolute; top:100%; left:0; right:0; background:var(--navy-deep);
  border-bottom:1px solid rgba(255,255,255,0.1); padding:8px 20px 20px;
  box-shadow:0 30px 50px -20px rgba(0,0,0,0.5);
}
.nav-mobile-panel.is-open{display:block;}
.nav-mobile-panel a{
  display:block; padding:14px 4px; color:rgba(255,255,255,0.8); text-decoration:none;
  font-size:15px; font-weight:500; border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-mobile-panel a:last-child{border-bottom:none;}
.nav-mobile-panel a:hover{color:#fff;}

/* ---------- HERO (dark panel) ---------- */
.hero{
  background-image: var(--hero-bg-image, none), radial-gradient(120% 140% at 78% 8%, #163863 0%, var(--navy) 46%, var(--navy-deep) 100%);
  background-size: cover, auto;
  background-position: right center, center;
  background-repeat: no-repeat, no-repeat;
  padding:96px 0 0;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:""; position:absolute; top:-20%; right:-10%; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(217,165,63,0.16), transparent 70%);
  pointer-events:none;
}
.hero > .wrap{ position:relative; z-index:1; }
.hero-inner{
  max-width:640px;
  position:relative;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono'; font-size:11.5px; letter-spacing:0.16em; text-transform:uppercase;
  color:#f0d6a0; background:rgba(217,165,63,0.12); border:1px solid rgba(217,165,63,0.3);
  padding:7px 14px; border-radius:100px; margin-bottom:32px;
}
.eyebrow::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); display:block;}
h1.hero-title{
  font-family:'Fraunces', serif; font-weight:500; font-size:clamp(46px, 6vw, 82px);
  line-height:0.98; margin:0 0 26px; color:#fff; letter-spacing:-0.02em;
}
h1.hero-title em{ font-style:italic; font-weight:400; color:#8db4ea;}
.hero-sub{
  font-size:18px; line-height:1.65; color:rgba(255,255,255,0.62); max-width:440px; margin:0 0 36px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px;}
.btn-primary{
  background:#fff; color:var(--navy-deep); border:none; padding:16px 30px; border-radius:100px;
  font-weight:700; font-size:14.5px; cursor:pointer; display:inline-flex; align-items:center; gap:8px;
  transition:transform 0.2s ease; text-decoration:none;
}
.btn-primary:hover{transform:translateY(-2px);}
.btn-ghost{
  background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.25); padding:15px 28px; border-radius:100px;
  font-weight:600; font-size:14.5px; cursor:pointer; text-decoration:none;
  transition:border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover{border-color:#fff; background:rgba(255,255,255,0.06);}
.hero-badges{display:flex; gap:26px; flex-wrap:wrap;}
.hero-badge{display:flex; align-items:center; gap:8px; font-size:12.5px; color:rgba(255,255,255,0.5); font-weight:500;}
.hero-badge svg{flex-shrink:0;}

.breathe-band{
  margin-top:56px; padding:22px 0; border-top:1px solid rgba(255,255,255,0.12);
  position:relative;
}
.breathe-band svg{width:100%; height:64px; display:block;}
.breathe-path{ fill:none; stroke:rgba(255,255,255,0.55); stroke-width:1.6; stroke-linecap:round; }
.breathe-label{
  font-family:'IBM Plex Mono'; font-size:10.5px; color:rgba(255,255,255,0.32); letter-spacing:0.12em;
  display:flex; justify-content:space-between; margin-top:-6px; text-transform:uppercase;
}

/* ---------- SECTION HEADERS ---------- */
.section{padding:104px 0;}
.section-head{max-width:600px; margin:0 0 56px;}
.section-tag{
  font-family:'IBM Plex Mono'; font-size:11.5px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold); font-weight:500; margin-bottom:16px; display:block;
}
.section-head h2{
  font-family:'Fraunces', serif; font-weight:500; font-size:clamp(30px,3.6vw,44px);
  color:var(--navy); margin:0 0 16px; line-height:1.12; letter-spacing:-0.01em;
}
.section-head p{color:var(--slate); font-size:16.5px; line-height:1.65; margin:0;}

/* ---------- SHOP: product pages ---------- */
.shop-layout{
  display:grid; grid-template-columns:0.82fr 1.18fr; gap:64px; align-items:flex-start;
}
.variant-stage{
  position:sticky; top:36px;
  background:linear-gradient(160deg,#ffffff, #e4eef8);
  border-radius:28px; padding:28px 24px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  border:1px solid var(--line);
  box-shadow:0 40px 60px -40px rgba(14,38,71,0.35);
}
.variant-stage img{
  border-radius:16px; box-shadow:0 26px 50px -18px rgba(14,38,71,0.4);
  transition:opacity 0.35s ease;
}
.stage-photo-btn{
  border:none; background:none; padding:0; margin:0; cursor:zoom-in;
  display:flex; align-items:center; justify-content:center;
  height:320px; width:100%;
}
.stage-photo-btn img{
  width:auto; height:100%; max-width:100%; max-height:100%; object-fit:contain;
}
.variant-price{
  font-family:'Fraunces', serif; font-size:38px; color:var(--navy); margin:26px 0 4px; font-weight:500;
}
.variant-price sup{font-size:16px; font-weight:600; top:-16px;}
.price-note{font-size:12px; color:var(--slate-soft); margin-bottom:16px; font-family:'IBM Plex Mono';}
.shipping-chip{
  display:inline-flex; align-items:center; gap:7px;
  font-family:'IBM Plex Mono'; font-size:11px; color:var(--navy);
  background:rgba(14,38,71,0.05); border:1px solid var(--line);
  padding:8px 14px; border-radius:100px; margin-bottom:24px;
}
.shipping-chip svg{flex-shrink:0;}
.qty-row{
  display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--line);
  border-radius:100px; padding:8px 8px; margin-bottom:14px;
}
.qty-row button{
  width:34px; height:34px; border-radius:50%; border:none; background:var(--bg); color:var(--navy);
  font-size:18px; cursor:pointer; font-weight:600; line-height:1;
}
.qty-row button:hover{background:var(--gold); color:#fff;}
.qty-row span{font-family:'IBM Plex Mono'; font-size:15px; min-width:20px; text-align:center;}
.add-btn{
  width:100%; background:var(--navy); color:#fff; border:none; padding:16px; border-radius:100px;
  font-weight:700; font-size:14.5px; cursor:pointer; transition:background 0.2s ease;
}
.add-btn:hover{background:var(--navy-2);}
.stock-line{font-size:11.5px; color:var(--slate-soft); margin-top:14px; font-family:'IBM Plex Mono';}

.variant-panel h3{
  font-family:'Fraunces', serif; font-size:30px; color:var(--navy); font-weight:500; margin:0 0 10px; letter-spacing:-0.01em;
}
.variant-panel > p.desc{color:var(--slate); font-size:16px; line-height:1.65; max-width:520px; margin:0 0 34px;}

.picker-group{margin-bottom:28px;}
.picker-label{
  font-family:'IBM Plex Mono'; font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--slate-soft); margin-bottom:13px; display:block;
}

/* ---------- PRODUCT INFO LIST ---------- */
.info-list{margin:0; display:flex; flex-direction:column; gap:16px;}
.info-row{display:grid; grid-template-columns:120px 1fr; gap:18px;}
.info-row dt{
  font-family:'IBM Plex Mono'; font-size:11px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin:0; padding-top:1px;
}
.info-row dd{margin:0; font-size:14.5px; line-height:1.65; color:var(--slate);}
@media (max-width:560px){
  .info-row{grid-template-columns:1fr; gap:4px;}
}
.swatches{display:flex; gap:12px; flex-wrap:wrap;}
.swatch{
  width:44px; height:44px; border-radius:50%; cursor:pointer; position:relative;
  border:2px solid transparent; box-shadow:inset 0 0 0 1px rgba(14,38,71,0.15);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.swatch:hover{transform:translateY(-2px);}
.swatch.active{border-color:var(--navy); box-shadow:0 0 0 3px rgba(14,38,71,0.12);}
.swatch.black{background:#0f1117;}
.swatch.white{background:#ffffff;}
.swatch.transparent{background:rgba(255,255,255,0.12); backdrop-filter:blur(1px); box-shadow:inset 0 0 0 1.5px rgba(14,38,71,0.35), inset 0 0 8px rgba(255,255,255,0.5);}
.swatch.transparent::after{content:""; position:absolute; top:6px; left:8px; width:12px; height:8px; border-radius:50%; background:rgba(255,255,255,0.55); filter:blur(2px);}

.size-pills{display:flex; gap:10px; flex-wrap:wrap;}
.size-pill{
  padding:11px 20px; border-radius:100px; border:1.5px solid var(--line); background:#fff;
  font-family:'IBM Plex Mono'; font-size:13px; color:var(--navy); cursor:pointer;
  transition:all 0.2s ease; text-decoration:none; display:inline-block;
}
.size-pill:hover{border-color:var(--navy-2);}
.size-pill.active{background:var(--navy); border-color:var(--navy); color:#fff;}

.spec-chips{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:38px;}
.spec-chip{
  font-family:'IBM Plex Mono'; font-size:11.5px; color:var(--slate); background:rgba(14,38,71,0.05);
  border:1px solid var(--line); padding:8px 13px; border-radius:8px;
}

.shelf-strip{
  display:flex; gap:14px; overflow-x:auto; padding:6px 2px 18px;
  scrollbar-width:thin;
}
.shelf-item{
  flex:0 0 auto; width:92px; text-align:center; cursor:pointer; opacity:0.5; background:none; border:none; padding:0;
  transition:opacity 0.25s ease, transform 0.25s ease;
}
.shelf-item img{width:100%; border-radius:12px; border:1px solid var(--line);}
.shelf-item.active{opacity:1; transform:translateY(-4px);}
.shelf-item .lbl{font-family:'IBM Plex Mono'; font-size:10px; color:var(--slate-soft); margin-top:7px; display:block;}

/* ---------- CATEGORY / FORMAT CARDS ---------- */
.category-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px;}
.category-card{
  display:block; text-decoration:none; background:#fff; border:1px solid var(--line); border-radius:24px;
  overflow:hidden; transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover{transform:translateY(-4px); box-shadow:0 30px 50px -30px rgba(14,38,71,0.4);}
.category-card-media{
  background:linear-gradient(160deg,#e4eef8,#cfe0f2); padding:32px; height:230px;
  display:flex; align-items:center; justify-content:center;
}
.category-card-media img{max-height:100%; max-width:170px; width:auto; height:auto;}
.category-card-body{padding:28px 30px 32px;}
.category-card-body h3{font-family:'Fraunces', serif; font-size:24px; color:var(--navy); margin:0 0 10px; font-weight:500;}
.category-card-body p{color:var(--slate); font-size:14.5px; line-height:1.6; margin:0 0 18px;}
.category-card-cta{font-family:'IBM Plex Mono'; font-size:12.5px; color:var(--navy-2); font-weight:600;}

/* ---------- HOW IT WORKS ---------- */
.steps{
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px;
}
.step{
  background:#fff; border:1px solid var(--line); border-radius:18px; padding:28px 22px;
  position:relative; overflow:hidden;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover{ transform:translateY(-4px); box-shadow:0 20px 34px -22px rgba(14,38,71,0.3); }
.step .num{
  font-family:'Fraunces', serif; font-size:42px; color:rgba(14,38,71,0.1); font-weight:600;
  position:absolute; top:6px; right:14px; line-height:1;
}
.step .icon{margin-bottom:18px;}
.step h4{font-size:14.5px; color:var(--navy); margin:0 0 8px; font-weight:700;}
.step p{font-size:12.8px; color:var(--slate); line-height:1.55; margin:0;}

/* ---------- BADGES STRIP ---------- */
.badge-strip{
  background:var(--navy-deep); border-radius:26px; padding:44px 50px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:28px;
}
.badge-item{display:flex; align-items:center; gap:14px; color:#fff; flex:1 1 200px;}
.badge-item .ic{
  width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.badge-item strong{display:block; font-size:14.5px; font-weight:600;}
.badge-item span{font-size:12px; color:rgba(255,255,255,0.5);}

/* ---------- QUALITY CONTENT CARDS ---------- */
.quality-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-bottom:56px;}
.quality-card{
  background:#fff; border:1px solid var(--line); border-radius:20px; padding:32px 30px;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.quality-card:hover{transform:translateY(-4px); box-shadow:0 24px 40px -28px rgba(14,38,71,0.3);}
.quality-card .ic{
  width:44px; height:44px; border-radius:50%; background:rgba(14,38,71,0.06);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.quality-card h4{font-family:'Fraunces', serif; font-size:19px; color:var(--navy); font-weight:500; margin:0 0 10px;}
.quality-card p{font-size:14px; color:var(--slate); line-height:1.65; margin:0;}

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

/* ---------- LIGHTBOX ---------- */
.lightbox{position:fixed; inset:0; z-index:300; display:none; align-items:center; justify-content:center; padding:40px;}
.lightbox.is-open{display:flex;}
.lightbox-backdrop{position:absolute; inset:0; background:rgba(8,17,33,0.9);}
.lightbox-img{position:relative; max-width:min(720px,90vw); max-height:86vh; border-radius:20px; box-shadow:0 40px 80px -20px rgba(0,0,0,0.6);}
.lightbox-close{
  position:absolute; top:24px; right:24px; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,0.1); border:none; color:#fff; font-size:22px; cursor:pointer; z-index:2;
}
.lightbox-close:hover{background:rgba(255,255,255,0.2);}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid; grid-template-columns:0.8fr 1.2fr; gap:64px; align-items:start;}
.contact-info{
  background:linear-gradient(160deg,#ffffff, #e4eef8); border:1px solid var(--line); border-radius:24px;
  padding:36px 32px;
}
.contact-info h3, .contact-form-wrap h3{
  font-family:'Fraunces', serif; font-weight:500; font-size:22px; color:var(--navy); margin:0 0 18px;
}
.contact-brand{font-weight:700; color:var(--navy); margin:0 0 6px;}
.contact-info p{color:var(--slate); font-size:14.5px; line-height:1.6; margin:0 0 4px;}
.contact-links{margin-top:20px; display:flex; flex-direction:column; gap:12px;}
.contact-links a{
  display:inline-flex; align-items:center; gap:10px; color:var(--navy-2); text-decoration:none;
  font-size:14.5px; font-weight:600;
}
.contact-links a:hover{color:var(--gold);}
.contact-meta{
  margin-top:22px; padding-top:18px; border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:4px;
  font-family:'IBM Plex Mono'; font-size:11.5px; color:var(--slate-soft);
}
.contact-form-wrap{background:#fff; border:1px solid var(--line); border-radius:24px; padding:36px 32px;}
.contact-form .form-row{margin-bottom:18px;}
.contact-form .form-row-2{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
.contact-form label{
  display:block; font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--slate-soft); margin-bottom:8px;
}
.contact-form input, .contact-form textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:12px;
  font-family:inherit; font-size:14px; color:var(--ink); background:#fff; resize:vertical;
}
.contact-form input:focus, .contact-form textarea:focus{outline:none; border-color:var(--navy-2);}

/* ---------- FAQ ---------- */
.faq-list{display:flex; flex-direction:column; gap:12px; max-width:760px;}
.faq-item{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px 26px;
  transition:border-color 0.2s ease;
}
.faq-item[open]{border-color:var(--navy-2);}
.faq-item summary{
  font-family:'Fraunces', serif; font-weight:500; font-size:17px; color:var(--navy);
  cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+"; font-family:'IBM Plex Mono'; font-size:20px; color:var(--gold); flex-shrink:0;
  transition:transform 0.2s ease; line-height:1;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item .faq-answer{margin-top:14px; color:var(--slate); font-size:14.5px; line-height:1.65;}
.faq-item .faq-answer p{margin:0 0 10px;}
.faq-item .faq-answer p:last-child{margin-bottom:0;}

@media (max-width:920px){
  .contact-grid{grid-template-columns:1fr;}
  .contact-form .form-row-2{grid-template-columns:1fr;}
}

/* ---------- FOOTER ---------- */
footer{padding:70px 0 48px; border-top:1px solid var(--line); margin-top:20px;}
.footer-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; margin-bottom:48px;}
.footer-brand .logo{
  display:flex; align-items:center; gap:10px; font-family:'Fraunces', serif; font-weight:600; font-size:20px;
  color:var(--navy); margin-bottom:16px;
}
.footer-brand p{color:var(--slate); font-size:13.5px; line-height:1.6; max-width:280px;}
.footer-col h5{
  font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:0.1em;
  color:var(--slate-soft); margin:0 0 18px;
}
.footer-col a{display:block; color:var(--navy); text-decoration:none; font-size:14px; margin-bottom:11px; font-weight:500;}
.footer-col a:hover{color:var(--gold);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:12px; color:var(--slate-soft); font-family:'IBM Plex Mono';
}

.toast{
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(120%);
  background:var(--navy); color:#fff; padding:14px 26px; border-radius:100px; font-size:14px; font-weight:600;
  box-shadow:0 20px 40px -10px rgba(0,0,0,0.35); transition:transform 0.35s cubic-bezier(.2,.8,.2,1); z-index:100;
  display:flex; align-items:center; gap:10px;
}
.toast.show{transform:translateX(-50%) translateY(0);}

[data-reveal]{opacity:0; transform:translateY(18px); transition:opacity 0.6s ease, transform 0.6s ease;}
[data-reveal].in{opacity:1; transform:translateY(0);}

@media (max-width:1080px){
  .steps{grid-template-columns:repeat(3,1fr);}
}

@media (max-width:920px){
  .nav-links{display:none;}
  .nav-mobile-toggle{display:inline-flex; align-items:center; justify-content:center;}
  .nav-inner{padding:14px 20px; position:relative;}
  .wrap{padding:0 22px;}
  .hero{padding-top:52px; position:relative;}
  .hero::after{
    content:""; position:absolute; inset:0; background:rgba(8,23,51,0.6); pointer-events:none;
  }
  .shop-layout{grid-template-columns:1fr; gap:36px;}
  .variant-stage{position:static;}
  .steps{grid-template-columns:repeat(2,1fr);}
  .badge-strip{flex-direction:column;}
  .category-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:30px;}
  .toast{left:50%;}
}
@media (max-width:560px){
  .steps{grid-template-columns:1fr 1fr;}
  .section{padding:72px 0;}
}

/* ==========================================================================
   WOOCOMMERCE — cart, checkout, notices
   Reskins WooCommerce's own default markup (the [woocommerce_cart] /
   [woocommerce_checkout] shortcode output) to match the rest of the site.
   Class names below are WooCommerce core conventions, not ours.
   ========================================================================== */

.woocommerce{ padding:64px 0 100px; }
.woocommerce .wrap{ max-width:1180px; }

.woocommerce h1.entry-title,
.woocommerce-cart h1,
.woocommerce-checkout h1{
  font-family:'Fraunces', serif; font-weight:500; font-size:clamp(28px,3.4vw,40px);
  color:var(--navy); letter-spacing:-0.01em; margin:0 0 40px;
}

/* ---- notices (errors, success messages) ---- */
.woocommerce-error, .woocommerce-message, .woocommerce-info{
  list-style:none; margin:0 0 28px; padding:16px 20px; border-radius:14px;
  font-size:14px; line-height:1.5; display:flex; align-items:center; justify-content:space-between; gap:16px;
  flex-wrap:wrap;
}
.woocommerce-message{ background:rgba(14,38,71,0.06); color:var(--navy); border:1px solid var(--line); }
.woocommerce-error{ background:#fdecec; color:#8a2a2a; border:1px solid #f3c8c8; }
.woocommerce-info{ background:rgba(217,165,63,0.1); color:#7a5a1e; border:1px solid rgba(217,165,63,0.35); }
.woocommerce-error a.button, .woocommerce-message a.button{
  background:var(--navy); color:#fff; border-radius:100px; padding:9px 18px; font-size:13px; font-weight:600; text-decoration:none;
}

/* ---- cart table ---- */
table.shop_table{
  width:100%; border-collapse:collapse; margin-bottom:32px;
  background:#fff; border:1px solid var(--line); border-radius:20px; overflow:hidden;
}
table.shop_table thead th{
  font-family:'IBM Plex Mono'; font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--slate-soft); font-weight:500; text-align:left; padding:18px 16px; border-bottom:1px solid var(--line);
}
table.shop_table td{ padding:20px 16px; border-bottom:1px solid var(--line); vertical-align:middle; font-size:14.5px; color:var(--ink); }
table.shop_table tr:last-child td{ border-bottom:none; }

.product-thumbnail img{ width:64px; border-radius:12px; border:1px solid var(--line); }
.product-name a{ color:var(--navy); font-weight:600; text-decoration:none; }
.product-name a:hover{ color:var(--gold); }
.product-name .variation{ margin:6px 0 0; font-size:12px; color:var(--slate); }
.product-name .variation dt, .product-name .variation dd{ display:inline; margin:0; font-weight:400; }
.product-name .variation dt::after{ content:": "; }
.product-name .variation p{ margin:0; }

.woocommerce-Price-amount{ font-family:'IBM Plex Mono'; font-weight:500; color:var(--navy); }

td.product-quantity .quantity{ display:inline-flex; }
td.product-quantity .qty{
  width:60px; padding:9px 10px; border:1px solid var(--line); border-radius:100px;
  font-family:'IBM Plex Mono'; font-size:13px; text-align:center; color:var(--navy);
}

a.remove{
  display:inline-flex !important; align-items:center; justify-content:center;
  width:28px; height:28px; border-radius:50%; color:var(--slate) !important;
  background:rgba(14,38,71,0.06); text-decoration:none !important; font-size:16px; line-height:1;
  transition:background 0.2s ease, color 0.2s ease;
}
a.remove:hover{ background:#fdecec; color:#c0392b !important; }

.actions .coupon{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.actions .coupon label{ display:none; }
#coupon_code{
  padding:12px 16px; border:1px solid var(--line); border-radius:100px;
  font-family:inherit; font-size:13.5px; min-width:180px;
}
.actions .coupon .button,
table.shop_table .button{
  background:var(--navy); color:#fff !important; border:none; padding:12px 22px; border-radius:100px;
  font-family:inherit; font-weight:600; font-size:13.5px; cursor:pointer; text-decoration:none !important;
  transition:background 0.2s ease;
}
.actions .coupon .button:hover, table.shop_table .button:hover{ background:var(--navy-2); }

/* ---- totals / checkout button ---- */
.cart-collaterals{ display:flex; justify-content:flex-end; }
.cart_totals{
  width:100%; max-width:420px; background:radial-gradient(120% 140% at 12% 0%, #163863, var(--navy-deep) 60%);
  color:#fff; border-radius:24px; padding:34px 32px;
}
.cart_totals h2{
  font-family:'Fraunces', serif; font-weight:500; font-size:22px; color:#fff; margin:0 0 20px;
}
.cart_totals table{ width:100%; border-collapse:collapse; }
.cart_totals table th, .cart_totals table td{
  padding:13px 0; border-bottom:1px solid rgba(255,255,255,0.14); text-align:left; font-size:14px;
  color:rgba(255,255,255,0.85); font-weight:400;
}
.cart_totals table th{ font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:0.06em; color:rgba(255,255,255,0.5); }
.cart_totals table td{ text-align:right; }
.cart_totals table .order-total th, .cart_totals table .order-total td{
  border-bottom:none; font-size:17px; font-weight:600; color:#fff; padding-top:16px;
}
.cart_totals .woocommerce-Price-amount{ color:inherit; }
.cart_totals .woocommerce-shipping-methods{ list-style:none; margin:0; padding:0; text-align:right; }

.wc-proceed-to-checkout{ margin-top:22px; }
.wc-proceed-to-checkout .checkout-button,
.woocommerce a.button.alt,
.woocommerce #place_order{
  display:block; width:100%; text-align:center; background:var(--gold) !important; color:var(--navy-deep) !important;
  border:none; padding:16px; border-radius:100px; font-weight:700; font-size:14.5px; text-decoration:none !important;
  cursor:pointer; transition:transform 0.2s ease, background 0.2s ease;
}
.wc-proceed-to-checkout .checkout-button:hover,
.woocommerce a.button.alt:hover,
.woocommerce #place_order:hover{ background:#e8b559 !important; transform:translateY(-1px); }

.woocommerce a.continue-shopping{
  display:inline-block; margin-top:14px; color:var(--navy-2); font-size:13.5px; font-weight:600; text-decoration:none;
}

/* ---- checkout form ---- */
.woocommerce-checkout #customer_details{ display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-bottom:40px; }
.woocommerce-checkout h3{
  font-family:'Fraunces', serif; font-weight:500; font-size:19px; color:var(--navy); margin:0 0 18px;
}
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row, .woocommerce-additional-fields .form-row{
  margin-bottom:16px;
}
.woocommerce-checkout label{ display:block; font-size:12.5px; color:var(--slate); margin-bottom:6px; font-family:'IBM Plex Mono'; }
.woocommerce-checkout .required{ color:var(--gold); text-decoration:none; }
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:12px;
  font-family:inherit; font-size:14px; color:var(--ink); background:#fff;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus{ outline:none; border-color:var(--navy-2); }

#order_review{
  background:#fff; border:1px solid var(--line); border-radius:20px; padding:28px;
}
#order_review table.shop_table{ border:none; border-radius:0; }
#order_review table.shop_table td, #order_review table.shop_table th{ padding:12px 0; }

.payment_methods{ list-style:none; margin:20px 0 0; padding:0; }
.payment_methods li{
  border:1px solid var(--line); border-radius:14px; padding:14px 16px; margin-bottom:10px; background:#fff;
}
.payment_methods li label{ font-weight:600; color:var(--navy); font-family:inherit; font-size:14px; }
.payment_box{ font-size:13px; color:var(--slate); padding-top:10px; }

@media (max-width:920px){
  .woocommerce-checkout #customer_details{ grid-template-columns:1fr; }
  table.shop_table.shop_table_responsive thead{ display:none; }
  table.shop_table.shop_table_responsive tr{ display:block; padding:16px; border-bottom:1px solid var(--line); }
  table.shop_table.shop_table_responsive td{
    display:flex; justify-content:space-between; align-items:center; border-bottom:none; padding:6px 0;
  }
  table.shop_table.shop_table_responsive td::before{
    content:attr(data-title); font-family:'IBM Plex Mono'; font-size:10.5px; text-transform:uppercase;
    color:var(--slate-soft); margin-right:12px;
  }
  .cart-collaterals{ justify-content:stretch; }
  .cart_totals{ max-width:none; }
}
