/* =====================================================================
   SAULON — Design System
   Palette : warm ivory · deep bottle-green · antique gold
   Type    : Cormorant Garamond (display) · Manrope (ui/body)
   Motif   : the gold diamond ◆ from the brand mark
   ===================================================================== */

:root{
  --bg:        #F3ECDD;   /* warm ivory page */
  --bg-2:      #EFE6D3;   /* slightly deeper band */
  --surface:   #FCF8F0;   /* cards */
  --surface-2: #FFFDF8;
  --green:     #123329;   /* deep bottle green (brand dark) */
  --green-2:   #0C2620;   /* darker */
  --green-soft:#1C4638;
  --gold:      #A9812E;   /* text-safe antique gold on cream */
  --gold-2:    #C79A45;
  --gold-br:   #DCB863;   /* bright gold on dark */
  --ink:       #221F19;   /* warm near-black text */
  --muted:     #6E6659;
  --muted-2:   #948A78;
  --line:      #E4D9C3;   /* hairline on cream */
  --line-dk:   rgba(220,184,99,.22); /* hairline on green */
  --wine:      #6E2434;   /* sale / accent */
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 1px 2px rgba(34,31,25,.04), 0 8px 30px -12px rgba(34,31,25,.18);
  --shadow-lg: 0 24px 60px -20px rgba(18,51,41,.35);
  --ease:      cubic-bezier(.22,.61,.36,1);
  --container: 1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'Manrope',system-ui,-apple-system,sans-serif;
  font-size:16px; line-height:1.6; -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
h1,h2,h3,h4{font-family:'Cormorant Garamond',Georgia,serif; font-weight:600; line-height:1.08; margin:0; letter-spacing:.2px}
button{font-family:inherit; cursor:pointer}
:focus-visible{outline:2px solid var(--gold); outline-offset:3px; border-radius:4px}

.container{max-width:var(--container); margin:0 auto; padding:0 24px}
.eyebrow{
  font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  font-weight:700; color:var(--gold); display:inline-flex; align-items:center; gap:8px;
}
.eyebrow::before{content:'◆'; font-size:8px; color:var(--gold-2)}
.diamond-rule{display:flex; align-items:center; gap:14px; color:var(--gold); justify-content:center; margin:0}
.diamond-rule::before,.diamond-rule::after{content:''; height:1px; flex:1; background:linear-gradient(90deg,transparent,var(--line))}
.diamond-rule span{font-size:9px; letter-spacing:.3em}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 30px; border:1px solid transparent; border-radius:var(--radius-sm);
  font-weight:600; font-size:13px; letter-spacing:.12em; text-transform:uppercase;
  transition:transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  background:var(--green); color:#F6EFDD; white-space:nowrap;
}
.btn:hover{background:var(--green-2); transform:translateY(-2px); box-shadow:var(--shadow-lg)}
.btn:active{transform:translateY(0)}
.btn-gold{background:linear-gradient(135deg,var(--gold-2),var(--gold)); color:#20180a}
.btn-gold:hover{background:linear-gradient(135deg,var(--gold-br),var(--gold-2)); color:#20180a}
.btn-ghost{background:transparent; border-color:var(--green); color:var(--green)}
.btn-ghost:hover{background:var(--green); color:#F6EFDD}
.btn-block{width:100%}
.btn-sm{padding:10px 18px; font-size:11px}
.btn:disabled{opacity:.5; cursor:not-allowed; transform:none}

/* =====================================================================
   ANNOUNCEMENT BAR + HEADER
   ===================================================================== */
.announce{background:var(--green-2); color:var(--gold-br); overflow:hidden; border-bottom:1px solid var(--line-dk)}
.announce .track{display:flex; gap:64px; white-space:nowrap; padding:9px 0;
  font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  animation:marquee 32s linear infinite;}
.announce .track span{display:inline-flex; align-items:center; gap:12px}
.announce .track span::before{content:'◆'; font-size:7px; color:var(--gold)}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.site-header{position:sticky; top:0; z-index:200; background:rgba(243,236,221,.86);
  backdrop-filter:saturate(140%) blur(12px); border-bottom:1px solid var(--line);
  transition:padding .3s var(--ease), background .3s;}
.site-header.shrink{background:rgba(243,236,221,.96)}
.header-row{display:flex; align-items:center; gap:20px; height:76px; transition:height .3s var(--ease)}
.site-header.shrink .header-row{height:62px}
.brand{display:flex; align-items:center; gap:12px; margin-right:auto}
.brand img{height:42px; width:auto; transition:height .3s var(--ease)}
.site-header.shrink .brand img{height:34px}
.nav{display:flex; align-items:center; gap:30px}
.nav a{font-size:13px; letter-spacing:.06em; font-weight:600; color:var(--ink); position:relative; padding:6px 0}
.nav a::after{content:''; position:absolute; left:0; bottom:0; height:1.5px; width:0; background:var(--gold); transition:width .3s var(--ease)}
.nav a:hover::after,.nav a.active::after{width:100%}
.nav a:hover{color:var(--green)}
.header-actions{display:flex; align-items:center; gap:6px}
.icon-btn{width:42px; height:42px; display:grid; place-items:center; border:none; background:none;
  color:var(--ink); border-radius:50%; position:relative; transition:background .2s, color .2s}
.icon-btn:hover{background:rgba(18,51,41,.07); color:var(--green)}
.icon-btn svg{width:21px; height:21px}
.badge{position:absolute; top:4px; right:3px; min-width:17px; height:17px; padding:0 4px;
  background:var(--gold); color:#20180a; font-size:10px; font-weight:800; border-radius:9px;
  display:grid; place-items:center; line-height:1}
.badge.bump{animation:bump .4s var(--ease)}
@keyframes bump{0%{transform:scale(1)}40%{transform:scale(1.5)}100%{transform:scale(1)}}
.hamburger{display:none}

/* mega dropdown */
.has-mega{position:relative}
.mega{position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(8px);
  background:var(--surface-2); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow-lg); padding:22px 26px; display:grid; grid-template-columns:repeat(3,minmax(130px,1fr));
  gap:6px 34px; opacity:0; visibility:hidden; transition:.28s var(--ease); z-index:210; min-width:460px}
.has-mega:hover .mega{opacity:1; visibility:visible; transform:translateX(-50%) translateY(0)}
.mega h5{grid-column:1/-1; font-family:'Manrope'; font-size:10px; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin:4px 0 8px; font-weight:800}
.mega a{font-size:13px; padding:7px 0; color:var(--muted); font-weight:500}
.mega a:hover{color:var(--green)}
.mega a::after{display:none}

/* mobile drawer */
.drawer-backdrop{position:fixed; inset:0; background:rgba(12,38,32,.5); backdrop-filter:blur(2px);
  opacity:0; visibility:hidden; transition:.3s; z-index:300}
.drawer-backdrop.open{opacity:1; visibility:visible}
.drawer{position:fixed; top:0; right:0; height:100%; width:min(340px,86vw); background:var(--surface-2);
  transform:translateX(100%); transition:transform .38s var(--ease); z-index:310; overflow-y:auto;
  box-shadow:var(--shadow-lg); padding:24px}
.drawer.open{transform:translateX(0)}
.drawer .close{margin-left:auto}
.drawer-head{display:flex; align-items:center; margin-bottom:18px}
.drawer-head img{height:34px}
.drawer-group{border-top:1px solid var(--line); padding:14px 0}
.drawer-group h6{font-family:'Manrope'; font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); margin:0 0 8px; font-weight:800}
.drawer-group a{display:block; padding:8px 0; font-size:15px; color:var(--ink)}

/* =====================================================================
   HERO
   ===================================================================== */
.hero{position:relative; background:var(--green); color:#F3EAD5; overflow:hidden; isolation:isolate}
.hero::before{content:''; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(220,184,99,.16), transparent 60%),
    radial-gradient(800px 500px at -10% 120%, rgba(28,70,56,.9), transparent 60%);
}
.hero-grain{position:absolute; inset:0; z-index:-1; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");}
.hero-inner{display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;
  min-height:min(78vh,660px); padding:56px 0}
.hero-copy .eyebrow{color:var(--gold-br)}
.hero-copy h1{font-size:clamp(44px,7vw,86px); color:#F5EDD9; margin:18px 0 20px; font-weight:500}
.hero-copy h1 em{font-style:italic; color:var(--gold-br)}
.hero-copy p{max-width:44ch; color:#CFC3A6; font-size:17px; margin:0 0 30px}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap}
.hero-figure{position:relative; aspect-ratio:4/5; border-radius:16px; overflow:hidden;
  box-shadow:var(--shadow-lg); border:1px solid var(--line-dk)}
.hero-figure img{width:100%; height:100%; object-fit:cover; transform:scale(1.02)}
.hero-tag{position:absolute; left:18px; bottom:18px; background:rgba(12,38,32,.72);
  backdrop-filter:blur(6px); border:1px solid var(--line-dk); border-radius:10px; padding:12px 16px}
.hero-tag small{color:var(--gold-br); font-size:10px; letter-spacing:.2em; text-transform:uppercase}
.hero-tag div{font-family:'Cormorant Garamond'; font-size:20px; color:#F3EAD5}

/* hero load animation */
.reveal-line{opacity:0; transform:translateY(24px); animation:riseIn .9s var(--ease) forwards}
.d1{animation-delay:.05s}.d2{animation-delay:.18s}.d3{animation-delay:.32s}.d4{animation-delay:.46s}
@keyframes riseIn{to{opacity:1; transform:translateY(0)}}

/* trust strip */
.trust{background:var(--green-2); color:#CFC3A6; border-top:1px solid var(--line-dk)}
.trust .container{display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; padding:16px 24px}
.trust div{display:flex; align-items:center; gap:10px; font-size:12px; letter-spacing:.04em}
.trust svg{width:18px; height:18px; color:var(--gold-br)}

/* =====================================================================
   SECTIONS & PRODUCT RAILS
   ===================================================================== */
.section{padding:64px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:30px}
.section-head h2{font-size:clamp(30px,4.4vw,46px); font-weight:500}
.section-head .link{font-size:12px; letter-spacing:.14em; text-transform:uppercase; font-weight:700; color:var(--green);
  display:inline-flex; align-items:center; gap:7px; border-bottom:1px solid var(--gold); padding-bottom:3px}
.section-head .link:hover{gap:11px}

.grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px}
.grid-3{grid-template-columns:repeat(3,1fr)}

/* horizontal rail */
.rail{display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:6px 2px 20px; margin:0 -2px; scrollbar-width:thin}
.rail::-webkit-scrollbar{height:6px}
.rail::-webkit-scrollbar-thumb{background:var(--line); border-radius:6px}
.rail > *{scroll-snap-align:start; flex:0 0 clamp(220px,24%,280px)}

/* ---------- Product card ---------- */
.card{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; position:relative; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--gold)}
.card-media{position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--bg-2)}
.card-media img{width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease)}
.card:hover .card-media img{transform:scale(1.06)}
.card-flag{position:absolute; top:12px; left:12px; z-index:2; display:flex; gap:6px; flex-direction:column}
.flag{font-size:10px; letter-spacing:.14em; text-transform:uppercase; font-weight:700;
  padding:5px 9px; border-radius:5px; background:var(--green); color:var(--gold-br)}
.flag.new{background:var(--gold); color:#20180a}
.wish{position:absolute; top:10px; right:10px; z-index:3; width:38px; height:38px; border-radius:50%;
  background:rgba(252,248,240,.9); border:1px solid var(--line); display:grid; place-items:center;
  color:var(--muted); transition:.25s; opacity:0; transform:translateY(-6px)}
.card:hover .wish{opacity:1; transform:translateY(0)}
.wish:hover{color:var(--wine); border-color:var(--wine)}
.wish.on{color:#fff; background:var(--wine); border-color:var(--wine); opacity:1; transform:none}
.wish svg{width:18px; height:18px}
.quick-add{position:absolute; left:12px; right:12px; bottom:12px; z-index:2;
  transform:translateY(130%); opacity:0; transition:.35s var(--ease)}
.card:hover .quick-add{transform:translateY(0); opacity:1}
.card-body{padding:16px 16px 18px}
.card-cat{font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); font-weight:700}
.card-title{font-family:'Manrope'; font-size:15px; font-weight:600; margin:6px 0 4px; line-height:1.35;
  display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden}
.card-foot{display:flex; align-items:center; justify-content:space-between; margin-top:8px}
.price{font-family:'Cormorant Garamond'; font-size:22px; font-weight:600; color:var(--green)}
.swatches{display:flex; gap:5px}
.swatch{width:14px; height:14px; border-radius:50%; border:1px solid rgba(0,0,0,.15); box-shadow:inset 0 0 0 2px var(--surface)}
.rating{font-size:11px; color:var(--gold-2); letter-spacing:1px}

/* category tiles */
.cat-tile{position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4; display:block}
.cat-tile img{width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease)}
.cat-tile:hover img{transform:scale(1.07)}
.cat-tile::after{content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(12,38,32,.8),transparent 55%)}
.cat-tile .cap{position:absolute; left:18px; bottom:16px; z-index:2; color:#F3EAD5}
.cat-tile .cap h3{font-size:26px; color:#F5EDD9}
.cat-tile .cap span{font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-br)}

/* editorial banner */
.editorial{background:var(--green); color:#EDE2C8; border-radius:18px; overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; align-items:center}
.editorial .txt{padding:clamp(30px,5vw,64px)}
.editorial h2{font-size:clamp(30px,4vw,52px); color:#F5EDD9; margin:14px 0 16px; font-weight:500}
.editorial p{color:#CFC3A6; max-width:42ch; margin:0 0 26px}
.editorial .pic{aspect-ratio:1/1; height:100%}
.editorial .pic img{width:100%; height:100%; object-fit:cover}

/* =====================================================================
   REVEAL ON SCROLL
   ===================================================================== */
.io{opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease)}
.io.in{opacity:1; transform:none}
.io.d1{transition-delay:.06s}.io.d2{transition-delay:.12s}.io.d3{transition-delay:.18s}.io.d4{transition-delay:.24s}

/* =====================================================================
   PRODUCT DETAIL PAGE
   ===================================================================== */
.crumbs{font-size:12px; color:var(--muted); letter-spacing:.04em; padding:22px 0}
.crumbs a:hover{color:var(--green)}
.pdp{display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:start}
.pdp-media{position:sticky; top:96px; border-radius:16px; overflow:hidden; border:1px solid var(--line);
  background:var(--surface); box-shadow:var(--shadow)}
.pdp-media img{width:100%; aspect-ratio:4/5; object-fit:cover}
.pdp-info h1{font-size:clamp(32px,4.5vw,50px); font-weight:500; margin:6px 0 10px}
.pdp-price{font-family:'Cormorant Garamond'; font-size:36px; color:var(--green); font-weight:600; margin:6px 0}
.pdp-desc{color:var(--muted); margin:18px 0 24px; max-width:52ch}
.opt-label{font-size:11px; letter-spacing:.18em; text-transform:uppercase; font-weight:700; color:var(--ink); margin:20px 0 10px; display:flex; justify-content:space-between}
.opt-label .val{color:var(--gold); font-weight:600}
.color-opts{display:flex; gap:10px; flex-wrap:wrap}
.color-opt{display:flex; align-items:center; gap:8px; padding:7px 12px 7px 8px; border:1px solid var(--line);
  border-radius:30px; background:var(--surface-2); font-size:12px; font-weight:600; transition:.2s}
.color-opt .dot{width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.15)}
.color-opt.sel{border-color:var(--green); box-shadow:0 0 0 1px var(--green)}
.size-opts{display:flex; gap:10px; flex-wrap:wrap}
.size-opt{min-width:52px; padding:12px 14px; border:1px solid var(--line); border-radius:8px;
  background:var(--surface-2); text-align:center; font-weight:600; font-size:13px; transition:.2s; position:relative}
.size-opt small{display:block; font-size:10px; color:var(--gold); font-weight:700}
.size-opt.sel{border-color:var(--green); background:var(--green); color:#F3EAD5}
.size-opt.sel small{color:var(--gold-br)}
.qty-row{display:flex; align-items:center; gap:16px; margin:24px 0}
.qty{display:flex; align-items:center; border:1px solid var(--line); border-radius:8px; overflow:hidden; background:var(--surface-2)}
.qty button{width:44px; height:46px; border:none; background:none; font-size:18px; color:var(--green)}
.qty button:hover{background:var(--bg-2)}
.qty input{width:44px; height:46px; border:none; text-align:center; background:none; font-weight:700; font-size:15px}
.pdp-meta{border-top:1px solid var(--line); margin-top:28px; padding-top:20px; display:grid; gap:12px}
.pdp-meta div{display:flex; align-items:center; gap:10px; font-size:13px; color:var(--muted)}
.pdp-meta svg{width:18px; height:18px; color:var(--gold)}

/* =====================================================================
   CART / CHECKOUT / ACCOUNT
   ===================================================================== */
.page-head{background:var(--green); color:#F3EAD5; padding:44px 0}
.page-head h1{font-size:clamp(32px,5vw,52px); color:#F5EDD9; font-weight:500}
.page-head .eyebrow{color:var(--gold-br)}
.layout-2{display:grid; grid-template-columns:1.5fr .9fr; gap:36px; align-items:start}
.panel{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:24px}
.panel h3{font-size:24px; margin-bottom:16px}

.cart-item{display:grid; grid-template-columns:92px 1fr auto; gap:16px; padding:18px 0; border-bottom:1px solid var(--line)}
.cart-item:last-child{border-bottom:none}
.cart-item img{width:92px; height:116px; object-fit:cover; border-radius:8px}
.cart-item .meta small{display:block; color:var(--muted); font-size:12px; margin-top:3px}
.cart-item .rm{background:none; border:none; color:var(--muted); font-size:12px; text-decoration:underline; padding:0; margin-top:8px}
.cart-item .rm:hover{color:var(--wine)}

.summary{position:sticky; top:96px}
.summary .row{display:flex; justify-content:space-between; padding:9px 0; font-size:14px; color:var(--muted)}
.summary .row.total{border-top:1px solid var(--line); margin-top:8px; padding-top:16px; font-size:20px; color:var(--ink)}
.summary .row.total b{font-family:'Cormorant Garamond'; font-size:28px; color:var(--green)}
.ship-note{font-size:12px; color:var(--gold); background:rgba(169,129,46,.08); padding:10px 12px; border-radius:8px; margin:12px 0}

.field{margin-bottom:16px}
.field label{display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; font-weight:700; color:var(--muted); margin-bottom:7px}
.field input,.field select,.field textarea{width:100%; padding:13px 14px; border:1px solid var(--line);
  border-radius:8px; background:var(--surface-2); font-family:inherit; font-size:15px; color:var(--ink); transition:.2s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(18,51,41,.08)}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.pay-opt{display:flex; gap:12px; align-items:flex-start; padding:16px; border:1px solid var(--line); border-radius:10px; margin-bottom:12px; cursor:pointer; transition:.2s; background:var(--surface-2)}
.pay-opt.sel{border-color:var(--green); box-shadow:0 0 0 1px var(--green)}
.pay-opt input{margin-top:3px}
.pay-opt .t{font-weight:700; font-size:14px}
.pay-opt .s{font-size:12px; color:var(--muted)}

/* auth */
.auth-wrap{max-width:440px; margin:0 auto; padding:56px 0}
.auth-card{background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:36px; box-shadow:var(--shadow)}
.auth-card h1{font-size:34px; text-align:center; margin-bottom:6px}
.auth-card .sub{text-align:center; color:var(--muted); font-size:14px; margin-bottom:24px}
.auth-switch{text-align:center; font-size:14px; color:var(--muted); margin-top:18px}
.auth-switch a{color:var(--green); font-weight:700}

/* account */
.acct{display:grid; grid-template-columns:230px 1fr; gap:32px; align-items:start}
.acct-nav{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:10px; position:sticky; top:96px}
.acct-nav a{display:block; padding:12px 14px; border-radius:8px; font-size:14px; font-weight:600; color:var(--muted)}
.acct-nav a.active,.acct-nav a:hover{background:var(--bg-2); color:var(--green)}
.order-card{border:1px solid var(--line); border-radius:var(--radius); padding:18px; margin-bottom:16px; background:var(--surface)}
.order-card .oh{display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; border-bottom:1px solid var(--line); padding-bottom:12px; margin-bottom:12px}
.status{font-size:11px; letter-spacing:.1em; text-transform:uppercase; font-weight:700; padding:5px 11px; border-radius:20px}
.status.pending{background:#fdf3e0; color:#96631a}
.status.confirmed{background:#e7f0ea; color:#1e6b46}
.status.shipped{background:#e5eef7; color:#245a8a}
.status.delivered{background:#e4f2e6; color:#1f7a3a}
.status.cancelled{background:#f8e6e6; color:#9a2b2b}

/* empty state */
.empty{text-align:center; padding:70px 20px}
.empty .di{font-size:34px; color:var(--gold); margin-bottom:14px}
.empty h3{font-size:30px; margin-bottom:8px}
.empty p{color:var(--muted); margin-bottom:22px}

/* toast */
.toast-wrap{position:fixed; right:20px; bottom:20px; z-index:400; display:flex; flex-direction:column; gap:10px}
.toast{background:var(--green); color:#F3EAD5; padding:14px 18px; border-radius:10px; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:12px; font-size:14px; transform:translateX(120%); animation:toastIn .4s var(--ease) forwards;
  border:1px solid var(--line-dk); max-width:340px}
.toast.out{animation:toastOut .4s var(--ease) forwards}
.toast svg{width:20px; height:20px; color:var(--gold-br); flex-shrink:0}
@keyframes toastIn{to{transform:translateX(0)}}
@keyframes toastOut{to{transform:translateX(120%); opacity:0}}

/* flash */
.flash{padding:13px 18px; border-radius:10px; margin-bottom:16px; font-size:14px; font-weight:600}
.flash.success{background:#e4f2e6; color:#1f6b3a; border:1px solid #bfe0c6}
.flash.error{background:#f9e7e7; color:#9a2b2b; border:1px solid #ecc7c7}
.flash.info{background:#eef0f7; color:#3a4a86; border:1px solid #cdd4ec}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer{background:var(--green); color:#CFC3A6; margin-top:72px; border-top:3px solid var(--gold)}
.footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:40px; padding:56px 0 40px}
.footer-brand img{height:46px; margin-bottom:16px}
.footer-brand p{font-size:14px; max-width:34ch; line-height:1.7}
.footer-col h5{font-family:'Manrope'; font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-br); margin:0 0 16px; font-weight:800}
.footer-col a{display:block; font-size:14px; padding:6px 0; color:#CFC3A6; transition:.2s}
.footer-col a:hover{color:#F5EDD9; padding-left:4px}
.news form{display:flex; gap:8px; margin-top:12px}
.news input{flex:1; padding:12px 14px; border:1px solid var(--line-dk); background:rgba(255,255,255,.04); color:#F3EAD5; border-radius:8px; font-family:inherit}
.news input::placeholder{color:#8f8672}
.footer-bottom{border-top:1px solid var(--line-dk); padding:20px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; color:#8f8672}
.pay-icons{display:flex; gap:8px; align-items:center}
.pay-icons span{font-size:10px; letter-spacing:.1em; padding:4px 8px; border:1px solid var(--line-dk); border-radius:5px; color:var(--gold-br)}

/* =====================================================================
   RESPONSIVE — mobile is the priority
   ===================================================================== */
@media (max-width:1080px){
  .footer-top{grid-template-columns:1fr 1fr}
  .hero-inner{gap:28px}
}
@media (max-width:900px){
  .nav{display:none}
  .hamburger{display:grid}
  .hero-inner{grid-template-columns:1fr; min-height:auto; padding:40px 0}
  .hero-figure{max-height:52vh; order:-1}
  .pdp{grid-template-columns:1fr; gap:26px}
  .pdp-media{position:static}
  .editorial{grid-template-columns:1fr}
  .editorial .pic{aspect-ratio:16/10}
  .layout-2{grid-template-columns:1fr}
  .summary{position:static}
  .acct{grid-template-columns:1fr}
  .acct-nav{position:static; display:flex; gap:6px; overflow-x:auto}
  .acct-nav a{white-space:nowrap}
  .grid-3{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .container{padding:0 16px}
  .section{padding:44px 0}
  .grid{grid-template-columns:repeat(2,1fr); gap:14px}
  .section-head{margin-bottom:20px}
  .card-body{padding:12px}
  .card-title{font-size:13px}
  .price{font-size:19px}
  .quick-add{position:static; transform:none; opacity:1; margin-top:10px}
  .wish{opacity:1; transform:none}
  .footer-top{grid-template-columns:1fr; gap:28px; padding:40px 0 28px}
  .grid-2{grid-template-columns:1fr}
  .trust .container{justify-content:center}
  .announce .track{animation-duration:22s}
  .btn{padding:13px 22px}
}
@media (max-width:400px){
  .grid{gap:10px}
  .header-actions .icon-btn.hide-xs{display:none}
}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important}
  .io{opacity:1; transform:none}
}
