/* ═══════════════════════════════════════════════════════════
   Mein Erlebnisgutschein — Global Stylesheet
   Shared across all pages: nav, footer, utilities, reset
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream:    #FAF6F0;
  --cream2:   #F3EDE3;
  --beige:    #E8DDD0;
  --beige2:   #D4C3AB;
  --gold:     #B8965A;
  --gold2:    #CAA96C;
  --gold-rgb: 184,150,90;
  --brown:    #4A3328;
  --text:     #1E1410;
  --text2:    #5C4A3A;
  --text3:    #8C7A6A;
  --white:    #FFFFFF;
  --green:    #3CA876;
  --nav-h:    72px;
  --bar-h:    38px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul    { list-style: none; }
select { appearance: none; -webkit-appearance: none; border: none; background: none; font-family: inherit; cursor: pointer; outline: none; }

/* ── Typography ────────────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; letter-spacing: -0.02em; line-height: 1.1; }
p { line-height: 1.75; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.03em;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s cubic-bezier(.16,1,.3,1);
  cursor: pointer; white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold   { background: var(--gold); color: var(--white); box-shadow: 0 4px 20px rgba(var(--gold-rgb),.38), 0 1px 4px rgba(0,0,0,.1); }
.btn-gold:hover { background: #C9A96C; box-shadow: 0 8px 28px rgba(var(--gold-rgb),.48); }
.btn-outline-dark { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-dark:hover { background: var(--gold); color: var(--white); }
.btn-white  { background: var(--white); color: var(--text); box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.btn-white:hover { box-shadow: 0 6px 20px rgba(0,0,0,.18); }

/* ── Announcement Bar ──────────────────────────────────── */
#ann-bar {
  height: var(--bar-h); background: var(--brown); overflow: hidden;
  display: flex; align-items: center;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.ticker-wrap  { overflow: hidden; width: 100%; }
.ticker-track { display: inline-flex; white-space: nowrap; animation: tickerScroll 52s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item  { color: rgba(255,255,255,.85); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.07em; padding: 0 52px; display: inline-flex; align-items: center; gap: 12px; }
.ticker-sep   { color: var(--gold2); font-size: 0.8rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Navbar ────────────────────────────────────────────── */
#navbar {
  position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: #FAF6F0;
  border-bottom: 1px solid var(--beige);
  display: flex; align-items: center; padding: 0 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-mark { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1; }
.nav-logo-sub  { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; color: var(--text3); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav-links a { padding: 7px 13px; font-size: 0.84rem; font-weight: 500; color: var(--text2); border-radius: 5px; transition: color .18s, background .18s; }
.nav-links a:hover  { color: var(--text); background: var(--beige); }
.nav-links a.active { color: var(--gold); font-weight: 600; background: rgba(var(--gold-rgb),.07); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--text2); padding: 7px 12px; border-radius: 5px; transition: color .18s, background .18s; }
.nav-phone:hover { color: var(--gold); background: var(--beige); }
.nav-icon-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text2); background: transparent; transition: background .18s, color .18s; position: relative; text-decoration: none; }
.nav-icon-btn:hover { background: var(--beige); color: var(--text); }
.nav-cart-badge { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 12px rgba(var(--gold-rgb),.35); transition: transform .2s, box-shadow .2s, background .2s !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(var(--gold-rgb),.5) !important; background: #C9A96C !important; }

/* ── Hamburger ─────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────────────────── */
#mobile-menu {
  position: fixed; top: calc(var(--bar-h) + var(--nav-h)); left: 0; right: 0;
  background: rgba(250,246,240,.98); backdrop-filter: blur(20px);
  z-index: 999; max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
  border-bottom: 1px solid var(--beige);
}
#mobile-menu.open { max-height: calc(100dvh - var(--bar-h) - var(--nav-h)); overflow-y: auto; }
.mobile-nav-inner { padding: 20px 20px 36px; }
.mobile-nav-inner a { display: block; padding: 13px 14px; font-size: .95rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--beige); }
.mobile-nav-inner a.active { color: var(--gold); }
.mobile-nav-section { padding: 8px 14px 4px; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-top: 6px; }
.mobile-nav-phone { padding: 16px 14px; display: flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: .9rem; }
.mobile-cta { margin: 16px 14px 0; }
.mobile-cta .btn-gold { width: 100%; justify-content: center; }

/* ── Section Utilities ─────────────────────────────────── */
.section    { padding: 80px 0; contain: layout; }
.section-sm { padding: 56px 0; }
.container  { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-tag-line { width: 22px; height: 1.5px; background: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--text); margin-bottom: 14px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: .95rem; color: var(--text2); line-height: 1.7; }

/* ── Scroll Reveal ─────────────────────────────────────── */
.sr-active .sr { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.sr-active .sr.in { opacity: 1; transform: none; }
.sr-active .sr.delay-1 { transition-delay: .1s; }
.sr-active .sr.delay-2 { transition-delay: .2s; }
.sr-active .sr.delay-3 { transition-delay: .3s; }
.sr-active .sr.delay-4 { transition-delay: .4s; }
.sr-active .sr.delay-5 { transition-delay: .5s; }

/* ── Page Top Offset ───────────────────────────────────── */
.page-top { margin-top: calc(var(--bar-h) + var(--nav-h)); }

/* ── Footer ────────────────────────────────────────────── */
#footer { background: #120D0A; }
.footer-top {
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-desc { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 240px; margin-top: 14px; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: border-color .18s, color .18s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.58); transition: color .18s; }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; }
.f-ci-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.f-ci-text { font-size: .84rem; color: rgba(255,255,255,.58); line-height: 1.5; }
.f-ci-text a { color: rgba(255,255,255,.58); transition: color .18s; }
.f-ci-text a:hover { color: var(--gold2); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy  { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-credit { font-size: .75rem; color: rgba(255,255,255,.28); }
.footer-credit a { color: var(--gold); opacity: .7; transition: opacity .18s; }
.footer-credit a:hover { opacity: 1; }

/* ── Urgency Row (product pages) ───────────────────────── */
.urgency-row{display:flex;align-items:center;gap:8px;font-size:.73rem;margin-top:8px;margin-bottom:4px;flex-wrap:wrap;}
.urg-live{display:flex;align-items:center;gap:4px;color:#D94F4F;font-weight:600;}
.urg-dot-live{width:6px;height:6px;border-radius:50%;background:#D94F4F;animation:pulse-live 1.6s ease-in-out infinite;}
@keyframes pulse-live{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.8);}}
.urg-text{color:var(--text2);font-weight:500;}
.urg-sep{color:var(--text3);}
.urg-avail{color:var(--green);font-weight:600;}

/* ── Scarcity Bar (product pages) ──────────────────────── */
.scarcity-bar{display:flex;align-items:center;gap:8px;background:rgba(184,150,90,.09);border:1px solid rgba(184,150,90,.25);border-radius:7px;padding:9px 13px;font-size:.78rem;color:var(--brown);margin-bottom:12px;}
.scarcity-bar svg{flex-shrink:0;color:var(--gold);}

/* ── Product Page Sticky Bar (desktop) ─────────────────── */
#product-sticky-bar{position:fixed;bottom:0;left:0;right:0;z-index:990;background:var(--white);border-top:1px solid var(--beige);box-shadow:0 -4px 24px rgba(0,0,0,.1);transform:translateY(100%);transition:transform .35s cubic-bezier(.16,1,.3,1);}
#product-sticky-bar.visible{transform:translateY(0);}
#product-sticky-bar .sticky-inner{max-width:1280px;margin:0 auto;padding:12px 36px;display:flex;align-items:center;gap:20px;}
#product-sticky-bar .sticky-brand{display:flex;align-items:center;gap:8px;}
#product-sticky-bar .sticky-mark{width:30px;height:30px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:.8rem;font-weight:600;color:var(--white);flex-shrink:0;}
#product-sticky-bar .sticky-brand-name{font-size:.82rem;font-weight:600;color:var(--text);line-height:1.1;}
#product-sticky-bar .sticky-brand-sub{font-size:.68rem;color:var(--text3);}
#product-sticky-bar .sticky-divider{width:1px;height:32px;background:var(--beige);flex-shrink:0;}
#product-sticky-bar .sticky-usps{display:flex;align-items:center;gap:16px;flex:1;flex-wrap:wrap;}
#product-sticky-bar .sticky-usp{display:flex;align-items:center;gap:5px;font-size:.76rem;color:var(--text2);}
#product-sticky-bar .sticky-usp svg{color:var(--gold);flex-shrink:0;}
#product-sticky-bar .sticky-price-block{display:flex;flex-direction:column;align-items:flex-end;flex-shrink:0;}
#product-sticky-bar .sticky-from{font-size:.65rem;color:var(--text3);}
#product-sticky-bar .sticky-price{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:600;color:var(--text);line-height:1;}
#product-sticky-bar .sticky-cta{padding:10px 24px;font-size:.83rem;flex-shrink:0;}
#product-sticky-bar .sticky-cta-wrap{display:flex;flex-direction:column;align-items:center;gap:5px;flex-shrink:0;}
#product-sticky-bar .sticky-guarantee{display:flex;align-items:center;gap:4px;font-size:.64rem;color:var(--text3);white-space:nowrap;}
#product-sticky-bar .sticky-guarantee svg{color:var(--green);flex-shrink:0;}
@media(max-width:768px){#product-sticky-bar{display:none!important;}}

/* ── WhatsApp Float Button ──────────────────────────────── */
.wa-float{position:fixed;bottom:28px;right:22px;z-index:998;width:52px;height:52px;border-radius:50%;background:#25D366;box-shadow:0 4px 18px rgba(37,211,102,.45);display:flex;align-items:center;justify-content:center;transition:transform .22s,box-shadow .22s;}
.wa-float:hover{transform:translateY(-3px) scale(1.06);box-shadow:0 8px 26px rgba(37,211,102,.55);}
.wa-float svg{width:26px;height:26px;fill:white;}
@media(max-width:768px){.wa-float{bottom:80px;right:16px;width:46px;height:46px;}}

/* ── Sticky buy bar — visible class (desktop product pages) */
#mobile-buy-bar.visible{display:block;}

/* ── Mobile buy bar urgency hint ───────────────────────── */
.mbb-urgency{font-size:.64rem;color:var(--green);font-weight:600;margin-top:2px;}

/* ── Blog Listing Page ──────────────────────────────────── */
.blog-hero-section{padding:64px 0 44px;text-align:center;background:var(--cream);}
.blog-hero-title{font-size:clamp(2rem,4vw,3.2rem);font-weight:400;color:var(--text);margin-bottom:14px;line-height:1.1;}
.blog-hero-sub{font-size:.98rem;color:var(--text2);max-width:500px;margin:0 auto;}
.blog-filter-bar{background:var(--white);border-bottom:1px solid var(--beige);position:sticky;top:calc(var(--bar-h) + var(--nav-h));z-index:100;}
.blog-pills{display:flex;gap:0;overflow-x:auto;max-width:1280px;margin:0 auto;padding:0 36px;}
.blog-pill{padding:14px 22px;font-size:.84rem;font-weight:500;color:var(--text2);background:none;border:none;border-bottom:2.5px solid transparent;cursor:pointer;white-space:nowrap;transition:color .18s,border-color .18s;font-family:'DM Sans',sans-serif;}
.blog-pill:hover{color:var(--text);}
.blog-pill.active{color:var(--gold);border-bottom-color:var(--gold);font-weight:600;}
.blog-section{background:var(--cream2);}
.article-card{display:block;border-radius:12px;overflow:hidden;background:var(--white);box-shadow:0 2px 12px rgba(0,0,0,.06);transition:transform .3s,box-shadow .3s;}
.article-card:hover{transform:translateY(-4px);box-shadow:0 10px 32px rgba(0,0,0,.1);}
.article-card.featured{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-bottom:28px;}
.ac-img-wrap{position:relative;overflow:hidden;height:240px;}
.article-card.featured .ac-img-wrap{height:100%;min-height:340px;}
.ac-img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.article-card:hover .ac-img{transform:scale(1.06);}
.ac-cat{position:absolute;top:14px;left:14px;font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:4px 10px;border-radius:4px;}
.ac-cat-events{background:var(--gold);color:var(--white);}
.ac-cat-beauty{background:var(--brown);color:var(--white);}
.ac-cat-inspiration{background:var(--green);color:var(--white);}
.ac-body{padding:26px;}
.article-card.featured .ac-body{padding:40px;display:flex;flex-direction:column;justify-content:center;}
.ac-meta{font-size:.72rem;color:var(--text3);display:flex;align-items:center;gap:6px;margin-bottom:10px;}
.ac-dot-sep{color:var(--beige2);}
.ac-title{font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:500;color:var(--text);line-height:1.3;margin-bottom:10px;}
.article-card.featured .ac-title{font-size:1.75rem;}
.ac-excerpt{font-size:.83rem;color:var(--text2);line-height:1.65;margin-bottom:18px;}
.ac-read{font-size:.8rem;font-weight:600;color:var(--gold);letter-spacing:.02em;}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}

/* ── Blog Post Page ──────────────────────────────────────── */
.article-wrap{max-width:740px;margin:0 auto;padding:0 36px;}
.article-header{text-align:center;padding:52px 36px 36px;max-width:740px;margin:0 auto;}
.article-cat-badge{display:inline-flex;align-items:center;font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:5px 12px;border-radius:20px;margin-bottom:20px;}
.article-title{font-size:clamp(1.9rem,3.5vw,2.9rem);font-weight:400;color:var(--text);margin-bottom:18px;line-height:1.12;}
.article-lead{font-size:1.05rem;color:var(--text2);line-height:1.8;margin-bottom:24px;}
.article-meta{display:flex;align-items:center;justify-content:center;gap:10px;font-size:.78rem;color:var(--text3);flex-wrap:wrap;}
.article-meta-sep{color:var(--beige2);}
.article-hero-img{width:100%;max-height:480px;object-fit:cover;border-radius:14px;margin-bottom:48px;display:block;}
.article-body{font-size:.96rem;color:var(--text2);line-height:1.9;padding-bottom:48px;}
.article-body h2{font-family:'Cormorant Garamond',serif;font-size:1.75rem;font-weight:500;color:var(--text);margin:44px 0 16px;letter-spacing:-.01em;}
.article-body h3{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:500;color:var(--text);margin:28px 0 10px;}
.article-body p{margin-bottom:22px;}
.article-body ul,.article-body ol{margin:0 0 22px 22px;}
.article-body li{margin-bottom:9px;}
.article-body strong{color:var(--text);font-weight:600;}
.article-body a{color:var(--gold);text-decoration:underline;text-underline-offset:3px;}
.article-divider{border:none;border-top:1px solid var(--beige);margin:44px 0;}
.article-cta-box{background:linear-gradient(135deg,var(--cream2),var(--white));border:1.5px solid var(--beige);border-left:4px solid var(--gold);border-radius:12px;padding:30px 32px;margin:44px 0;text-align:center;}
.article-cta-box h3{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--text);margin-bottom:10px;}
.article-cta-box p{font-size:.88rem;color:var(--text2);margin-bottom:20px;line-height:1.7;}
.author-box{display:flex;align-items:center;gap:18px;background:var(--cream2);border:1.5px solid var(--beige);border-radius:12px;padding:24px 28px;margin-top:48px;}
.author-avatar{width:52px;height:52px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;color:var(--white);flex-shrink:0;}
.author-name{font-weight:600;font-size:.9rem;color:var(--text);}
.author-role{font-size:.78rem;color:var(--text3);margin-top:2px;}
.blog-related{background:var(--cream2);padding:56px 0;}
.blog-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:36px;}

/* ── Blog Responsive ─────────────────────────────────────── */
@media(max-width:1024px){.articles-grid{grid-template-columns:repeat(2,1fr);}.blog-related-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:768px){.article-card.featured{grid-template-columns:1fr;}.article-card.featured .ac-img-wrap{height:240px;min-height:0;}.article-card.featured .ac-body{padding:26px;}.articles-grid{grid-template-columns:1fr;}.blog-pills{padding:0 18px;}.article-header{padding:36px 18px 24px;}.article-wrap{padding:0 18px;}.article-body h2{font-size:1.5rem;}.blog-related-grid{grid-template-columns:1fr;}.author-box{flex-direction:column;text-align:center;}}

/* ── Delivery Options ──────────────────────────────────── */
.delivery-section { margin: 18px 0 0; }
.delivery-section-label { font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text3); margin-bottom: 10px; }
.delivery-opts { display: flex; flex-direction: column; gap: 8px; }
.delivery-opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--beige); background: var(--white); cursor: pointer; transition: border-color .2s, background .2s; }
.delivery-opt:hover { border-color: rgba(var(--gold-rgb),.5); background: rgba(var(--gold-rgb),.03); }
.delivery-opt.selected { border-color: var(--gold); background: rgba(var(--gold-rgb),.07); }
.do-icon { width: 34px; height: 34px; border-radius: 7px; background: var(--cream2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; transition: background .2s; }
.delivery-opt.selected .do-icon { background: rgba(var(--gold-rgb),.18); }
.do-info { flex: 1; min-width: 0; }
.do-title { font-size: .86rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.do-sub { font-size: .74rem; color: var(--text3); margin-top: 2px; }
.do-badge { font-size: .67rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; background: rgba(60,168,118,.12); color: var(--green); flex-shrink: 0; letter-spacing: .02em; }
.do-badge-price { font-size: .67rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; background: rgba(var(--gold-rgb),.13); color: var(--gold); flex-shrink: 0; letter-spacing: .02em; }
.do-check { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--beige2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .2s, background .2s; color: transparent; }
.delivery-opt.selected .do-check { border-color: var(--gold); background: var(--gold); color: var(--white); }
.delivery-extra-fields { display: none; flex-direction: column; gap: 10px; margin-top: 10px; padding: 14px; border-radius: 8px; background: var(--cream2); border: 1px solid var(--beige); }
.delivery-extra-fields.active { display: flex; }
.delivery-post-surcharge { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text2); background: rgba(var(--gold-rgb),.09); border-radius: 6px; padding: 8px 12px; margin-top: 2px; }
.delivery-post-surcharge svg { color: var(--gold); flex-shrink: 0; }

/* ── Touch Optimizations ───────────────────────────────── */
button, a, [role="button"], label {
  -webkit-tap-highlight-color: transparent;
}
button, input, textarea, select {
  touch-action: manipulation;
}
input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], input[type="number"], textarea, select {
  font-size: max(16px, 1em);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; --bar-h: 34px; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-sub { font-size: .9rem; }
}
@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .navbar { padding: 0 14px; }
}

/* ── Safe area for notched phones ──────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  #mobile-buy-bar,
  #product-sticky-bar,
  .mobile-buy-bar {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  @media (max-width: 768px) {
    .wa-float { bottom: calc(80px + env(safe-area-inset-bottom)); }
  }
}
