:root{
  --bg:#0e0e10;
  --panel:#141518;
  --panel-soft:#191b20;
  --paper:#f7f3eb;
  --muted:#a8a095;
  --line:rgba(255,255,255,.09);
  --accent:#d2ae73;
  --accent-2:#b98976;
  --success:#153022;
  --error:#3a1818;
  --shadow:0 18px 55px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--paper);
  font-family:"Inter",system-ui,sans-serif;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}

.shell{
  width:min(1180px, calc(100% - 2rem));
  margin:0 auto;
}

.announcement{
  border-bottom:1px solid var(--line);
  background:#0a0a0b;
}
.announcement-inner{
  display:flex;
  gap:.9rem;
  align-items:center;
  padding:.7rem 0;
  color:var(--muted);
  font-size:.92rem;
}
.announcement-inner span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:84px;
  padding:.25rem .65rem;
  border:1px solid rgba(210,174,115,.35);
  border-radius:999px;
  color:var(--accent);
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.announcement-inner p{margin:0}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(14,14,16,.85);
  border-bottom:1px solid var(--line);
}
.nav-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1rem;
  align-items:center;
  min-height:84px;
}
.brand img{height:42px}
.site-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
}
.site-nav a{
  color:var(--muted);
  font-size:.95rem;
  transition:color .2s ease;
}
.site-nav a.active,.site-nav a:hover{color:var(--paper)}
.nav-action{display:flex;justify-content:flex-end}
.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:14px;
  background:transparent;
  padding:0;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--paper);
  margin:4px auto;
}

.hero{
  padding:3.5rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(210,174,115,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 32%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:2rem;
  align-items:center;
}
.hero-copy{
  padding:2rem 0 1rem;
}
.eyebrow{
  margin:0 0 .75rem;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:.72rem;
  color:var(--accent);
}
.hero h1,
.page-hero h1,
.section h2,
.product-panel h1,
.empty-state h1{
  margin:.1rem 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 6vw, 5.6rem);
  line-height:.95;
  letter-spacing:-.03em;
  font-weight:600;
}
.hero-sub,
.body-copy,
.page-hero p,
.product-sub{
  margin:0;
  max-width:640px;
  color:var(--muted);
  font-size:1.02rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin:2rem 0 1.4rem;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  min-height:50px;
  padding:.9rem 1.25rem;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--paper);
  color:#111;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:var(--shadow);
}
.button:hover{transform:translateY(-1px)}
.button-outline{
  background:transparent;
  color:var(--paper);
  border-color:var(--line);
  box-shadow:none;
}
.button-ghost{
  background:transparent;
  color:var(--muted);
  border:1px solid var(--line);
  box-shadow:none;
}
.button-small{
  min-height:40px;
  padding:.65rem .95rem;
  font-size:.92rem;
}
.hero-points{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
}
.hero-points li{
  padding:.55rem .85rem;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:.92rem;
}
.hero-visual{
  position:relative;
}
.hero-visual img{
  width:100%;
  border-radius:32px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-float{
  position:absolute;
  right:1rem;
  bottom:1rem;
  width:min(220px, 48%);
  padding:1rem 1.1rem;
  border-radius:26px;
  background:rgba(12,12,14,.92);
  border:1px solid rgba(210,174,115,.3);
  backdrop-filter:blur(12px);
}
.hero-float span{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.7rem;
  line-height:1;
  color:var(--accent);
}
.hero-float p{
  margin:.4rem 0 0;
  color:var(--muted);
  font-size:.94rem;
}

.trust-strip{
  padding:1.3rem 0 0;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.trust-grid div{
  padding:1.15rem 1rem;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
}
.trust-grid strong{
  display:block;
  margin-bottom:.35rem;
  font-size:.95rem;
}
.trust-grid span{
  color:var(--muted);
  font-size:.92rem;
}

.section{
  padding:4.5rem 0;
}
.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;
  gap:1rem;
  align-items:end;
  justify-content:space-between;
  margin-bottom:1.8rem;
}
.section h2{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  margin:.2rem 0 0;
}
.section-link{
  color:var(--accent);
  font-weight:600;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1.15rem;
}
.product-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.product-media{
  position:relative;
  overflow:hidden;
  background:#101114;
}
.product-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 0, rgba(0,0,0,.1) 100%);
}
.product-media img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  object-position:center top;
  transition:transform .35s ease;
}
.product-card:hover .product-media img{transform:scale(1.03)}
.product-card-body{
  display:flex;
  flex-direction:column;
  gap:.85rem;
  padding:1.15rem;
  height:100%;
}
.product-card-topline,
.pill-row,
.card-actions{
  display:flex;
  align-items:center;
  gap:.7rem;
  flex-wrap:wrap;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding:.35rem .65rem;
  border-radius:999px;
  background:rgba(210,174,115,.12);
  border:1px solid rgba(210,174,115,.26);
  color:var(--accent);
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.muted{
  color:var(--muted);
  font-size:.9rem;
}
.product-card h3{
  margin:0;
  font-size:1.2rem;
}
.product-card p{
  margin:0;
  color:var(--muted);
  font-size:.96rem;
}
.price-row{
  display:flex;
  align-items:baseline;
  gap:.65rem;
}
.price-row strong{
  font-size:1.18rem;
}
.price-row span{
  color:#7f796f;
  text-decoration:line-through;
}
.two-col{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:2rem;
  align-items:start;
}
.feature-list{
  display:grid;
  gap:1rem;
}
.feature-list article{
  padding:1.2rem;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
}
.feature-list h3{
  margin:0 0 .35rem;
  font-size:1.1rem;
}
.feature-list p{margin:0;color:var(--muted)}

.wear-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.wear-card{
  padding:1.25rem;
  min-height:220px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0)),
    var(--panel);
  border:1px solid var(--line);
}
.wear-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(210,174,115,.12);
  color:var(--accent);
  font-weight:700;
}
.wear-card h3{
  margin:1rem 0 .45rem;
  font-size:1.2rem;
}
.wear-card p{
  margin:0;
  color:var(--muted);
}

.newsletter-section{
  padding-top:0;
}
.newsletter-box{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:2rem;
  padding:2rem;
  border-radius:32px;
  background:
    radial-gradient(circle at top right, rgba(185,137,118,.18), transparent 24%),
    var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.stack-form{
  display:grid;
  gap:1rem;
}
.stack-form label,
.reserve-form label{
  display:grid;
  gap:.45rem;
}
.stack-form span,
.reserve-form span{
  font-size:.94rem;
  color:var(--muted);
}
input,select,textarea{
  width:100%;
  padding:.92rem 1rem;
  border-radius:18px;
  border:1px solid var(--line);
  background:#101114;
  color:var(--paper);
}
textarea{resize:vertical}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}
details{
  padding:1.1rem 1.15rem;
  border-radius:24px;
  border:1px solid var(--line);
  background:var(--panel);
}
summary{
  cursor:pointer;
  font-weight:600;
}
details p{
  color:var(--muted);
  margin:.7rem 0 0;
}

.page-hero{
  padding:3rem 0 1.5rem;
}
.page-hero-inner{
  padding:2rem 0 0;
}
.filters{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin-bottom:1.5rem;
}
.filter-pill{
  display:inline-flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  padding:.65rem .95rem;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  transition:all .2s ease;
}
.filter-pill:hover,
.filter-pill.is-active{
  border-color:rgba(210,174,115,.32);
  background:rgba(210,174,115,.08);
  color:var(--paper);
}

.product-section{padding-top:3rem}
.product-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 480px);
  gap:2rem;
  align-items:start;
}
.product-image-frame{
  border-radius:36px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
}
.product-image-frame img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  object-position:center top;
}
.product-panel{
  position:sticky;
  top:108px;
}
.product-panel h1{
  font-size:clamp(2.8rem, 5vw, 4.6rem);
  margin:.2rem 0 .75rem;
}
.product-price strong{font-size:1.6rem}
.detail-list{
  margin:1rem 0;
  padding-left:1.1rem;
  color:var(--muted);
}
.fit-note{
  display:flex;
  gap:.4rem;
  margin-bottom:1.2rem;
  color:var(--muted);
}
.reserve-form{
  display:grid;
  gap:.95rem;
  padding:1.3rem;
  border-radius:28px;
  background:var(--panel);
  border:1px solid var(--line);
}
.reserve-form h2{
  font-size:1.7rem;
  margin:0;
}
.reserve-form p{
  margin:0;
  color:var(--muted);
}
.empty-state{
  padding:3rem;
  text-align:center;
  border:1px solid var(--line);
  border-radius:28px;
  background:var(--panel);
}
.empty-state h2,
.empty-state h1{
  margin:0 0 .8rem;
}
.empty-state p{
  margin:0;
  color:var(--muted);
}

.flash-stack{
  position:fixed;
  top:104px;
  left:50%;
  transform:translateX(-50%);
  z-index:100;
  display:grid;
  gap:.75rem;
}
.flash{
  display:flex;
  align-items:center;
  gap:1rem;
  min-width:min(640px, calc(100vw - 2rem));
  padding:.85rem 1rem;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.flash p{margin:0;flex:1}
.flash button{
  border:0;
  background:transparent;
  color:inherit;
  font-size:1.4rem;
}
.flash-success{background:var(--success)}
.flash-error{background:var(--error)}

.site-footer{
  margin-top:3rem;
  border-top:1px solid var(--line);
  background:#0a0a0b;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  gap:2rem;
  padding:2.4rem 0;
}
.footer-logo{
  margin:0 0 .5rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2rem;
}
.footer-copy{
  margin:0;
  color:var(--muted);
  max-width:36ch;
}
.footer-heading{
  margin:0 0 .8rem;
  color:var(--paper);
  font-weight:700;
}
.site-footer a{
  display:block;
  color:var(--muted);
  margin:.4rem 0;
}
.site-footer a:hover{color:var(--paper)}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0 2rem;
  color:#837d74;
  font-size:.9rem;
  border-top:1px solid var(--line);
}

code{
  padding:.18rem .4rem;
  border-radius:10px;
  background:#101114;
  border:1px solid var(--line);
  font-size:.92em;
}

@media (max-width: 1080px){
  .product-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .trust-grid,.wear-grid{grid-template-columns:repeat(2,1fr)}
  .hero-grid,.two-col,.newsletter-box,.product-layout{grid-template-columns:1fr}
  .product-panel{position:static}
}

@media (max-width: 760px){
  .nav-shell{
    grid-template-columns:auto auto 1fr;
  }
  .nav-toggle{display:block;justify-self:start}
  .nav-action{display:none}
  .site-nav{
    display:none;
    position:absolute;
    left:1rem;
    right:1rem;
    top:86px;
    flex-direction:column;
    align-items:flex-start;
    padding:1rem;
    border-radius:24px;
    border:1px solid var(--line);
    background:rgba(20,21,24,.98);
    box-shadow:var(--shadow);
  }
  .site-nav.is-open{display:flex}
  .announcement-inner{align-items:flex-start;flex-direction:column}
  .hero h1,
  .page-hero h1,
  .product-panel h1,
  .empty-state h1{
    font-size:clamp(2.5rem, 12vw, 4rem);
  }
  .trust-grid,.wear-grid,.faq-grid,.footer-grid,.product-grid{
    grid-template-columns:1fr;
  }
  .section{
    padding:3.2rem 0;
  }
  .newsletter-box,
  .empty-state{
    padding:1.3rem;
  }
  .flash{
    min-width:calc(100vw - 2rem);
  }
}



/* === Commerce upgrade additions === */
.nav-shell-wide{
  grid-template-columns:auto 1fr auto;
}
.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:.75rem;
}
.nav-quiet-link{
  color:var(--muted);
  font-size:.95rem;
}
.nav-quiet-link:hover{color:var(--paper)}

.mini-cart{
  position:fixed;
  inset:0;
  display:none;
  z-index:80;
}
.mini-cart.is-open{display:block}
.mini-cart-backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(0,0,0,.55);
}
.mini-cart-panel{
  position:absolute;
  top:0;
  right:0;
  width:min(420px,100%);
  height:100%;
  background:var(--panel);
  border-left:1px solid var(--line);
  padding:1.25rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  overflow:auto;
}
.mini-cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.mini-cart-head h2{margin:0;font-family:"Cormorant Garamond", Georgia, serif;font-size:2rem}
.mini-cart-items{
  display:flex;
  flex-direction:column;
  gap:.9rem;
}
.mini-cart-item{
  display:grid;
  grid-template-columns:84px 1fr;
  gap:.85rem;
  align-items:start;
}
.mini-cart-item img{
  width:84px;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--line);
}
.mini-cart-item p,.mini-cart-item strong,.mini-cart-item span{display:block}
.mini-cart-item p{margin:0 0 .25rem}
.mini-cart-item span{color:var(--muted);font-size:.92rem}
.mini-cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:1rem;
  border-top:1px solid var(--line);
  margin-top:auto;
}

.filters-panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  padding:1rem;
  margin-bottom:2rem;
}
.filters-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.filters-actions{
  display:flex;
  gap:.75rem;
  padding-top:1rem;
}
.filters-panel label span,
.stack-form label span,
.form-grid label span{
  display:block;
  margin-bottom:.4rem;
  color:var(--muted);
  font-size:.92rem;
}
.filters-panel input,
.filters-panel select,
.stack-form input,
.stack-form select,
.stack-form textarea,
.form-grid input,
.form-grid select,
.form-grid textarea{
  width:100%;
  padding:.9rem 1rem;
  border-radius:16px;
  border:1px solid var(--line);
  background:#0f1012;
  color:var(--paper);
}
.filters-panel input:focus,
.filters-panel select:focus,
.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus{
  outline:none;
  border-color:rgba(210,174,115,.55);
  box-shadow:0 0 0 3px rgba(210,174,115,.12);
}
.product-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product-card-media{
  position:relative;
}
.product-card-media img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}
.product-card-body{
  padding:1rem;
}
.product-card-topline{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-start;
}
.product-card-title{
  display:block;
  font-size:1.05rem;
  font-weight:600;
  margin-bottom:.35rem;
}
.product-card-copy{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.product-card-price{
  text-align:right;
}
.product-card-price strong{display:block}
.product-card-price span{
  color:var(--muted);
  text-decoration:line-through;
  font-size:.92rem;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.25rem;
}
.section-link{
  color:var(--accent);
  font-weight:600;
}
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin:.95rem 0 0;
}
.tag{
  display:inline-flex;
  padding:.45rem .75rem;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.86rem;
  color:var(--muted);
}
.card-block,
.table-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  padding:1.25rem;
}
.card-block h1{
  margin-top:.15rem;
  margin-bottom:1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:3rem;
  line-height:1;
}
.card-block h2{
  margin-top:0;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2rem;
  line-height:1.1;
}
.stack-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  align-items:start;
  gap:1rem;
  padding:.65rem 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.summary-row:last-child{border-bottom:0}
.total-row{
  padding-top:1rem;
  margin-top:.4rem;
  border-top:1px solid var(--line);
  font-size:1.08rem;
}
.page-hero{
  padding:3rem 0 1rem;
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent 55%);
}
.page-hero-inner{
  max-width:820px;
}
.product-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}
.product-image-frame img{
  width:100%;
  border-radius:32px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.product-price{
  margin:1.2rem 0;
}
.price-row{
  display:flex;
  gap:1rem;
  align-items:baseline;
}
.price-row strong{font-size:1.4rem}
.price-row span{
  color:var(--muted);
  text-decoration:line-through;
}
.detail-list{
  padding-left:1.2rem;
  color:var(--muted);
}
.fit-note{
  display:flex;
  gap:.5rem;
  color:var(--paper);
  margin-bottom:1rem;
}
.product-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}
.product-actions form{margin:0}
.review-list{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.review-card{
  padding:1rem;
  border-radius:20px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.06);
}
.review-head{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:.5rem;
}
.cart-layout,
.checkout-layout{
  align-items:start;
}
.cart-list{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.cart-item{
  display:grid;
  grid-template-columns:92px 1fr auto auto auto;
  gap:1rem;
  align-items:center;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:1rem;
}
.cart-item img{
  width:92px;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
}
.cart-copy{
  display:flex;
  flex-direction:column;
  gap:.25rem;
}
.cart-copy span{color:var(--muted);font-size:.92rem}
.cart-item-controls{
  display:flex;
  align-items:center;
  gap:.65rem;
}
.cart-item-controls input{
  width:80px;
  padding:.75rem;
  border-radius:14px;
  border:1px solid var(--line);
  background:#0f1012;
  color:var(--paper);
}
.cart-item-total{
  font-weight:700;
}
.coupon-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:.75rem;
  margin:1rem 0;
}
.shipping-list{
  padding:1rem 0;
}
.auth-shell{
  max-width:640px;
}
.auth-card{
  margin:0 auto;
}
.auth-note{
  color:var(--muted);
  margin:0;
}
.check-row{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
}
.check-row input{
  width:auto !important;
  margin-top:.25rem;
}
.check-row span{
  margin:0 !important;
}
.table-card{
  overflow:auto;
}
.data-table{
  width:100%;
  border-collapse:collapse;
}
.data-table th,
.data-table td{
  padding:.95rem 1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:left;
  white-space:nowrap;
}
.data-table th{
  color:var(--muted);
  font-size:.88rem;
  font-weight:600;
}
.row-warning td{
  color:#ffd28c;
}
.prose-block p{
  color:var(--muted);
}
.sticky-card{
  position:sticky;
  top:110px;
}
.cookie-banner{
  position:fixed;
  left:1rem;
  right:1rem;
  bottom:1rem;
  z-index:90;
  background:rgba(20,21,24,.96);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:1rem 1.15rem;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  box-shadow:var(--shadow);
}
.cookie-banner p{margin:.35rem 0 0;color:var(--muted)}
.cookie-actions{
  display:flex;
  gap:.75rem;
}
.empty-state{
  padding:3rem;
  border-radius:28px;
  background:var(--panel);
  border:1px solid var(--line);
  text-align:center;
}
.empty-state p{color:var(--muted)}
.wear-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.wear-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:1.25rem;
}
.wear-card span{
  color:var(--accent);
  font-size:1.3rem;
  font-family:"Cormorant Garamond", Georgia, serif;
}
@media (max-width: 980px){
  .filters-grid,
  .form-grid,
  .trust-grid,
  .wear-grid,
  .hero-grid,
  .product-layout,
  .two-col{
    grid-template-columns:1fr;
  }
  .cart-item{
    grid-template-columns:80px 1fr;
  }
  .cart-item-controls,
  .cart-item-total,
  .cart-item form:last-child{
    grid-column:2;
  }
  .sticky-card{position:static}
  .nav-actions{justify-content:flex-start}
  .cookie-banner{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 720px){
  .product-card-topline,
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-shell-wide{
    grid-template-columns:auto auto;
  }
  .nav-actions{
    grid-column:1 / -1;
  }
}

.hidden-submit{display:none}
