/* ─── RESET & TOKENS ───────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --green-deep:#2e4a35;
  --green-darker:#21372a;
  --wood:#3a2c20;
  --wood-light:#6b4f38;
  --gold:#c9a14a;
  --gold-light:#e3c578;
  --gold-text:#7a5c1a;
  --cream:#ece3d0;
  --cream-pale:#f7f2e8;
  --charcoal:#161311;
  --brick:#a3502f;
  --text-main:#1e1a16;
  --text-muted:#6b5e50;
  --text-light:#9e8e7c;
  --border:#d9ceba;
  --shadow-sm:0 1px 3px rgba(22,19,17,.08),0 1px 2px rgba(22,19,17,.06);
  --shadow-md:0 4px 16px rgba(22,19,17,.12);
  --shadow-lg:0 12px 40px rgba(22,19,17,.18);
  --radius:8px;
  --radius-lg:16px;
  --nav-h:72px;
  --topbar-h:40px;
  --transition:all .22s cubic-bezier(.4,0,.2,1);
}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:'DM Sans',sans-serif;color:var(--text-main);background:var(--cream-pale);overflow-x:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ─── UTILITY ───────────────────────────────────────────────────────────── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}
.section-label{font-family:'Cinzel',serif;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-text);margin-bottom:12px}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(32px,4vw,52px);font-weight:600;line-height:1.1;color:var(--charcoal)}
.btn-primary{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;background:var(--gold);color:var(--charcoal);font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;border-radius:var(--radius);transition:var(--transition);will-change:transform,box-shadow}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,161,74,.35)}
.btn-outline{display:inline-flex;align-items:center;gap:8px;padding:13px 27px;background:transparent;color:var(--cream);border:1.5px solid rgba(236,227,208,.45);font-size:14px;font-weight:400;letter-spacing:.04em;border-radius:var(--radius);transition:var(--transition)}
.btn-outline:hover{background:rgba(236,227,208,.12);border-color:rgba(236,227,208,.7)}

/* ─── TOPBAR ────────────────────────────────────────────────────────────── */
.topbar{height:var(--topbar-h);background:var(--green-darker);display:flex;align-items:center;justify-content:center;gap:32px;position:relative;z-index:100}
.topbar-text{font-size:12.5px;font-weight:400;color:rgba(236,227,208,.85);letter-spacing:.02em}
.topbar-text strong{color:var(--gold-light);font-weight:500}
.topbar-phones{display:flex;gap:20px}
.topbar-phone{font-size:12.5px;color:rgba(236,227,208,.85);display:flex;align-items:center;gap:6px;transition:color .2s}
.topbar-phone:hover{color:var(--gold-light)}
.topbar-phone svg{width:13px;height:13px;opacity:.7}
.topbar-divider{width:1px;height:16px;background:rgba(236,227,208,.2)}

/* ─── NAV ───────────────────────────────────────────────────────────────── */
.nav{position:sticky;top:0;z-index:200;height:var(--nav-h);background:rgba(22,19,17,.96);backdrop-filter:blur(12px);border-bottom:1px solid rgba(201,161,74,.15)}
.nav-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:24px}
.nav-logo{display:flex;align-items:center;gap:12px;flex-shrink:0}
.nav-logo img{height:48px;width:auto;filter:drop-shadow(0 2px 6px rgba(201,161,74,.3))}
.nav-logo-text{display:flex;flex-direction:column;line-height:1}
.nav-logo-name{font-family:'Cinzel',serif;font-size:16px;font-weight:600;color:var(--gold-light);letter-spacing:.06em}
.nav-logo-sub{font-size:10px;font-weight:300;color:rgba(236,227,208,.72);letter-spacing:.12em;text-transform:uppercase;margin-top:2px}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-link{padding:8px 16px;font-size:13.5px;font-weight:400;color:rgba(236,227,208,.75);border-radius:var(--radius);transition:var(--transition);letter-spacing:.02em}
.nav-link:hover{color:var(--cream);background:rgba(201,161,74,.1)}
.nav-actions{display:flex;align-items:center;gap:12px}
.cart-btn{display:flex;align-items:center;gap:8px;padding:9px 18px;background:var(--gold);color:var(--charcoal);border-radius:var(--radius);font-size:13.5px;font-weight:500;transition:var(--transition);position:relative}
.cart-btn:hover{background:var(--gold-light);transform:translateY(-1px)}
.cart-count{background:var(--brick);color:#fff;font-size:10px;font-weight:600;padding:2px 6px;border-radius:20px;min-width:18px;text-align:center;line-height:1.4}
.hamburger{display:none;flex-direction:column;gap:5px;width:44px;height:44px;align-items:center;justify-content:center;border-radius:var(--radius)}
.hamburger span{display:block;width:22px;height:2px;background:var(--cream);border-radius:2px;transition:var(--transition)}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero{position:relative;min-height:calc(100vh - var(--topbar-h) - var(--nav-h));display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center;will-change:transform}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(22,19,17,.82) 0%,rgba(22,19,17,.6) 50%,rgba(22,19,17,.35) 100%);z-index:1}
.hero-overlay-bottom{position:absolute;bottom:0;left:0;right:0;height:180px;background:linear-gradient(to top,var(--cream-pale),transparent);z-index:2}
.hero-content{position:relative;z-index:3;max-width:640px}
.hero-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:24px}
.hero-eyebrow-line{width:32px;height:1px;background:var(--gold)}
.hero-eyebrow-text{font-family:'Cinzel',serif;font-size:11px;letter-spacing:.22em;color:var(--gold);text-transform:uppercase}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(42px,5.5vw,72px);font-weight:600;line-height:1.08;color:var(--cream);margin-bottom:20px}
.hero-title em{font-style:italic;color:var(--gold-light)}
.hero-desc{font-size:16px;font-weight:300;color:rgba(236,227,208,.8);line-height:1.65;margin-bottom:36px;max-width:480px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:56px}
.hero-stats{display:flex;gap:0}
.hero-stat{padding:20px 32px;border-right:1px solid rgba(201,161,74,.2);last-child{border-right:none}}
.hero-stat:first-child{padding-left:0}
.hero-stat:last-child{border-right:none}
.hero-stat-val{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:700;color:var(--gold-light);line-height:1}
.hero-stat-label{font-size:11.5px;font-weight:400;color:rgba(236,227,208,.6);margin-top:4px;letter-spacing:.03em}

/* ─── OFERTE SLIDER ─────────────────────────────────────────────────────── */
.section-oferte{padding:80px 0;background:var(--charcoal);position:relative;overflow:hidden}
.section-oferte::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.oferte-header{text-align:center;margin-bottom:48px}
.oferte-header .section-label{color:var(--gold)}
.oferte-header .section-title{color:var(--cream)}
.slider-wrap{position:relative;overflow:hidden;border-radius:var(--radius-lg)}
.slider-track{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1);will-change:transform}
.slide{min-width:100%;padding:0 48px}
@media(max-width:640px){.slide{padding:0 16px}}
.offer-card{background:linear-gradient(135deg,var(--green-darker) 0%,var(--green-deep) 100%);border:1px solid rgba(201,161,74,.28);border-radius:var(--radius-lg);padding:48px 56px;display:flex;align-items:center;justify-content:space-between;gap:40px;position:relative;overflow:hidden;transition:transform .3s cubic-bezier(.4,0,.2,1),box-shadow .3s,border-color .3s}
.offer-card:hover{transform:translateY(-3px);border-color:rgba(201,161,74,.5);box-shadow:0 16px 44px rgba(22,19,17,.32)}
.offer-card::before{content:'';position:absolute;top:-80px;right:-80px;width:280px;height:280px;background:radial-gradient(circle,rgba(201,161,74,.14) 0%,transparent 70%);pointer-events:none}
.offer-card::after{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(180deg,var(--gold-light),var(--gold))}
.offer-content{position:relative;z-index:1}
.offer-label{display:inline-flex;align-items:center;gap:7px;font-family:'Cinzel',serif;font-size:10px;letter-spacing:.2em;color:var(--gold-light);text-transform:uppercase;margin-bottom:14px}
.offer-label svg{width:14px;height:14px;flex-shrink:0}
.offer-title{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,3.5vw,44px);font-weight:700;color:var(--cream);line-height:1.1;margin-bottom:10px}
.offer-subtitle{font-size:14px;font-weight:300;color:rgba(236,227,208,.72);letter-spacing:.02em;line-height:1.5;max-width:42ch}
.offer-cta{display:inline-flex;align-items:center;gap:7px;margin-top:20px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;letter-spacing:.04em;color:var(--gold-light);transition:gap .2s}
.offer-cta svg{width:15px;height:15px;transition:transform .22s}
.offer-card:hover .offer-cta svg{transform:translateX(4px)}
.offer-badge{flex-shrink:0;position:relative;z-index:1;width:128px;height:128px;background:radial-gradient(circle at 35% 30%,var(--gold-light),var(--gold) 70%);border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;box-shadow:0 10px 36px rgba(201,161,74,.4),inset 0 2px 6px rgba(255,255,255,.35)}
.offer-badge::before{content:'';position:absolute;inset:7px;border-radius:50%;border:1.5px dashed rgba(22,19,17,.28)}
.offer-badge-val{font-family:'Cormorant Garamond',serif;font-size:40px;font-weight:700;color:var(--charcoal);line-height:1;letter-spacing:-.01em}
.offer-gift .offer-badge-val{font-size:34px}
.offer-badge-label{font-size:10px;font-weight:600;color:var(--charcoal);opacity:.85;letter-spacing:.08em;margin-top:3px;text-transform:uppercase}
.offer-photo{flex-shrink:0;position:relative;z-index:1;width:185px;height:185px;border-radius:50%;overflow:hidden;border:3px solid var(--gold);box-shadow:0 10px 36px rgba(22,19,17,.4)}
.offer-photo img{width:100%;height:100%;object-fit:cover}
.slider-controls{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:28px}
.slider-btn{width:44px;height:44px;border-radius:50%;border:1.5px solid rgba(201,161,74,.3);color:var(--gold);display:flex;align-items:center;justify-content:center;transition:var(--transition);background:transparent}
.slider-btn:hover{background:rgba(201,161,74,.1);border-color:var(--gold)}
.slider-dots{display:flex;gap:8px}
.slider-dot{width:6px;height:6px;border-radius:50%;background:rgba(201,161,74,.3);transition:var(--transition);cursor:pointer}
.slider-dot.active{width:20px;border-radius:3px;background:var(--gold)}

/* ─── CATEGORII ─────────────────────────────────────────────────────────── */
.section-menu{padding:88px 0;background:var(--cream-pale)}
.menu-header{margin-bottom:48px}
/* Grid categorii — stil rand (text stanga + poza dreapta), 2 pe desktop / 1 pe mobil */
.cat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
@media(max-width:760px){.cat-grid{grid-template-columns:1fr;gap:12px}}
.cat-card{position:relative;display:flex;align-items:center;gap:18px;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;background:#fff;padding:14px 16px 14px 22px;min-height:118px;transition:transform .2s cubic-bezier(.4,0,.2,1),box-shadow .2s,border-color .2s;will-change:transform}
.cat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:rgba(201,161,74,.5)}
.cat-card img{order:2;flex-shrink:0;width:150px;height:100px;border-radius:12px;object-fit:cover;transition:transform .3s cubic-bezier(.4,0,.2,1)}
.cat-card:hover img{transform:scale(1.04)}
.cat-card-overlay{display:none}
.cat-card-body{order:1;flex:1;min-width:0}
.cat-card-name{font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:700;color:var(--charcoal);line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cat-card-count{display:none}
/* placeholderul colorat (Bauturi) ca poza dreptunghiulara in rand */
.cat-card .cat-card-placeholder{order:2;position:static;flex-shrink:0;width:150px;height:100px;border-radius:12px;inset:auto}
@media(max-width:420px){.cat-card img,.cat-card .cat-card-placeholder{width:120px;height:88px}.cat-card-name{font-size:26px}}

/* ─── CATEGORY DRILL-IN ─────────────────────────────────────────────────── */
.cat-detail{display:none;animation:fadeUp .3s ease}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.cat-detail.active{display:block}
.cat-detail-header{display:flex;align-items:center;gap:20px;margin-bottom:40px;padding-bottom:24px;border-bottom:1px solid var(--border)}
.back-btn{display:flex;align-items:center;gap:8px;padding:12px 18px;min-height:44px;border:1.5px solid var(--border);border-radius:var(--radius);font-size:13px;font-weight:500;color:var(--text-muted);transition:var(--transition)}
.back-btn:hover{border-color:var(--gold);color:var(--gold)}
.back-btn svg{width:16px;height:16px}
.cat-detail-title{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:600;color:var(--charcoal)}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:900px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:540px){.products-grid{grid-template-columns:1fr}}

/* ─── PRODUCT CARD ──────────────────────────────────────────────────────── */
.product-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border);transition:transform .22s,box-shadow .22s;will-change:transform;display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.product-img-wrap{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--cream)}
.product-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s;will-change:transform}
.product-card:hover .product-img-wrap img{transform:scale(1.04)}
.product-body{padding:16px 18px 18px;display:flex;flex-direction:column;flex:1}
.product-name{font-family:'Cormorant Garamond',serif;font-size:17px;font-weight:600;color:var(--charcoal);line-height:1.25;margin-bottom:5px}
.product-desc{font-size:12.5px;font-weight:400;color:var(--text-muted);line-height:1.5;flex:1;margin-bottom:14px}
.product-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:auto}
.product-price{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:700;color:var(--green-deep)}
.product-price span{font-size:13px;font-weight:400;color:var(--text-muted);margin-left:2px}
.size-selector{display:flex;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:12px}
.size-btn{flex:1;padding:12px 10px;min-height:44px;font-size:12px;font-weight:500;color:var(--text-muted);background:transparent;transition:var(--transition);text-align:center}
.size-btn.active{background:var(--green-deep);color:var(--cream)}
.add-btn{display:flex;align-items:center;gap:6px;padding:12px 16px;min-height:44px;background:var(--green-deep);color:var(--cream);border-radius:var(--radius);font-size:13px;font-weight:500;transition:var(--transition);white-space:nowrap}
.add-btn:hover{background:var(--green-darker);transform:translateY(-1px)}
.add-btn svg{width:14px;height:14px}

/* ─── LOCALUL ───────────────────────────────────────────────────────────── */
.section-local{padding:88px 0;background:var(--wood);position:relative;overflow:hidden}
.local-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
@media(max-width:800px){.local-inner{grid-template-columns:1fr}}
.local-img-wrap{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/3;position:relative}
.local-img-wrap img{width:100%;height:100%;object-fit:cover}
.local-img-wrap::after{content:'';position:absolute;inset:0;border-radius:var(--radius-lg);border:1px solid rgba(201,161,74,.2)}
.local-content .section-label{color:var(--gold)}
.local-content .section-title{color:var(--cream);margin-bottom:16px}
.local-desc{font-size:15px;font-weight:300;color:rgba(236,227,208,.75);line-height:1.7;margin-bottom:32px}
.program-grid{display:grid;gap:1px;border-radius:var(--radius);overflow:hidden}
.program-row{display:flex;justify-content:space-between;align-items:center;padding:11px 16px;background:rgba(22,19,17,.3)}
.program-row:first-child{border-radius:var(--radius) var(--radius) 0 0}
.program-row:last-child{border-radius:0 0 var(--radius) var(--radius)}
.program-day{font-size:13px;font-weight:400;color:rgba(236,227,208,.7)}
.program-hours{font-size:13px;font-weight:500;color:var(--gold-light)}

/* ─── LIVRARE ───────────────────────────────────────────────────────────── */
.section-livrare{padding:88px 0;background:var(--cream-pale)}
.livrare-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
@media(max-width:800px){.livrare-grid{grid-template-columns:1fr}}
.zone-card{border-radius:var(--radius-lg);padding:32px;border:1px solid var(--border);background:#fff}
.zone-card.free{border-color:rgba(46,74,53,.3);background:rgba(46,74,53,.04)}
.zone-badge{display:inline-flex;align-items:center;padding:4px 12px;border-radius:20px;font-family:'Cinzel',serif;font-size:10px;letter-spacing:.12em;margin-bottom:16px}
.zone-card.free .zone-badge{background:var(--green-deep);color:var(--cream)}
.zone-card.paid .zone-badge{background:var(--gold);color:var(--charcoal)}
.zone-price{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:700;color:var(--charcoal);margin-bottom:6px;line-height:1}
.zone-price-note{font-size:12px;color:var(--text-muted);margin-bottom:20px}
.zone-areas{list-style:none;display:flex;flex-direction:column;gap:6px}
.zone-area{font-size:13.5px;color:var(--text-muted);display:flex;align-items:center;gap:8px}
.zone-area::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0}

/* ─── CTA ───────────────────────────────────────────────────────────────── */
.section-cta{padding:80px 0;background:var(--green-deeper,var(--green-darker));text-align:center;position:relative;overflow:hidden}
.section-cta::before{content:'';position:absolute;inset:0;background:var(--green-darker)}
.cta-inner{position:relative;z-index:1}
.cta-title{font-family:'Cormorant Garamond',serif;font-size:clamp(32px,4vw,52px);font-weight:600;color:var(--cream);margin-bottom:12px}
.cta-sub{font-size:15px;font-weight:300;color:rgba(236,227,208,.65);margin-bottom:36px}
.cta-phones{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.cta-phone{display:flex;align-items:center;gap:10px;padding:14px 28px;border:1.5px solid rgba(201,161,74,.35);border-radius:var(--radius);color:var(--gold-light);font-size:16px;font-weight:500;transition:var(--transition)}
.cta-phone:hover{background:rgba(201,161,74,.1);border-color:var(--gold)}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
footer{padding:40px 0;background:var(--charcoal);border-top:1px solid rgba(201,161,74,.12)}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer-logo{display:flex;align-items:center;gap:12px}
.footer-logo img{height:44px;opacity:.85}
.footer-logo-text{font-family:'Cinzel',serif;font-size:14px;color:rgba(236,227,208,.5);letter-spacing:.06em}
.footer-copy{font-size:12px;color:rgba(236,227,208,.3)}

/* ─── CART DRAWER ───────────────────────────────────────────────────────── */
.cart-overlay{position:fixed;inset:0;background:rgba(22,19,17,.6);z-index:900;opacity:0;pointer-events:none;transition:opacity .3s;backdrop-filter:blur(3px)}
.cart-overlay.open{opacity:1;pointer-events:all}
.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:min(420px,100vw);background:#fff;z-index:901;transform:translateX(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;will-change:transform}
.cart-drawer.open{transform:translateX(0)}
.cart-header{padding:24px;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.cart-title{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:600;color:var(--charcoal)}
.cart-close{width:44px;height:44px;border-radius:50%;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:var(--transition)}
.cart-close:hover{border-color:var(--brick);color:var(--brick)}
.cart-items{flex:1;overflow-y:auto;padding:16px 24px}
.cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:200px;gap:12px;color:var(--text-light)}
.cart-empty svg{width:40px;height:40px;opacity:.4}
.cart-empty p{font-size:14px}
.cart-item{display:flex;align-items:center;gap:14px;padding:14px 0;border-bottom:1px solid var(--border)}
.cart-item-img{width:56px;height:56px;border-radius:8px;object-fit:cover;flex-shrink:0;background:var(--cream)}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-size:14px;font-weight:500;color:var(--charcoal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cart-item-sub{font-size:12px;color:var(--text-muted);margin-top:2px}
.cart-item-price{font-family:'Cormorant Garamond',serif;font-size:17px;font-weight:700;color:var(--green-deep);flex-shrink:0}
.qty-ctrl{display:flex;align-items:center;gap:0;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;flex-shrink:0}
.qty-btn{width:30px;height:30px;display:flex;align-items:center;justify-content:center;font-size:16px;color:var(--text-muted);transition:var(--transition)}
.qty-btn:hover{background:var(--cream);color:var(--charcoal)}
.qty-val{width:28px;text-align:center;font-size:13px;font-weight:500}
.cart-footer{padding:20px 24px;border-top:1px solid var(--border)}
.cart-total-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:16px}
.cart-total-label{font-size:14px;color:var(--text-muted)}
.cart-total-val{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:700;color:var(--charcoal)}
.cart-total-val span{font-size:15px;font-weight:400;color:var(--text-muted)}
.whatsapp-btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:16px;background:#25d366;color:#fff;border-radius:var(--radius);font-size:14px;font-weight:500;transition:var(--transition)}
.whatsapp-btn:hover{background:#1ebe5d;transform:translateY(-1px);box-shadow:0 6px 20px rgba(37,211,102,.3)}
.whatsapp-btn svg{width:20px;height:20px}


/* ─── MOBILE NAV ────────────────────────────────────────────────────────── */
.mobile-menu{position:fixed;top:0;left:0;right:0;bottom:0;background:var(--charcoal);z-index:500;display:flex;flex-direction:column;padding:80px 32px 40px;gap:8px;transform:translateX(-100%);transition:transform .35s cubic-bezier(.4,0,.2,1)}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu-link{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;color:var(--cream);padding:12px 0;border-bottom:1px solid rgba(201,161,74,.1);transition:color .2s}
.mobile-menu-link:hover{color:var(--gold)}
.mobile-menu-close{position:absolute;top:20px;right:20px;width:44px;height:44px;display:flex;align-items:center;justify-content:center;color:var(--cream);font-size:24px}
.mobile-menu-phones{margin-top:32px;display:flex;flex-direction:column;gap:8px}
.mobile-menu-phone{font-size:15px;color:rgba(236,227,208,.6)}

@media(max-width:768px){
  .nav-links,.nav-logo-text{display:none}
  .hamburger{display:flex}
  .topbar{flex-wrap:wrap;padding:6px 16px;height:auto;min-height:var(--topbar-h);gap:6px 16px}
  .topbar-divider{display:none}
  .hero-stat{padding:16px 20px}
  .hero-stats{flex-wrap:wrap}
  .offer-card{flex-direction:column-reverse;padding:32px 24px;text-align:center;gap:24px}
  .offer-card::after{width:100%;height:4px;bottom:auto}
  .offer-label{justify-content:center}
  .offer-cta{margin-top:16px}
  .offer-badge{width:100px;height:100px}
  .offer-badge-val{font-size:32px}
  .offer-gift .offer-badge-val{font-size:28px}
  .offer-photo{width:160px;height:160px}
  .local-inner{grid-template-columns:1fr}
  .livrare-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;text-align:center}
}
