@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  /* Colors */
  --white:   #ffffff;
  --bg:      #fafaf8;
  --bg2:     #f4f2ee;
  --surface: #ffffff;
  --ink:     #111110;
  --ink2:    #1c1c1a;
  --muted:   #6b6b67;
  --muted2:  #9e9e99;
  --border:  #e8e5e0;
  --border2: #f0ede8;
  --gold:    #b8860b;
  --gold2:   #d4a017;
  --gold3:   #f0c040;
  --goldl:   #fef9ec;
  --green:   #16a34a;
  --greenl:  #f0fdf4;
  --red:     #dc2626;
  --redl:    #fef2f2;
  --blue:    #2563eb;
  --bluel:   #eff6ff;
  --amber:   #d97706;
  --amberl:  #fffbeb;

  /* Sizing */
  --nav-h:   64px;
  --r:       16px;
  --r2:      10px;
  --r3:      8px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --shadow:    0 10px 25px rgba(0,0,0,.08), 0 4px 10px rgba(0,0,0,.05);
  --shadow-lg: 0 25px 50px rgba(0,0,0,.12), 0 10px 20px rgba(0,0,0,.06);
  --shadow-gold: 0 8px 30px rgba(184,134,11,.2);

  /* Fonts */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, system-ui, sans-serif;

  /* Transitions */
  --t: .2s ease;
  --t2: .35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); font-size: 15px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
input, select, textarea { font-family: var(--sans); }
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.15; }
em { color: var(--gold); font-style: italic; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── UTILITIES ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn  { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:none; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(.96); } to { opacity:1; transform:scale(1); } }
@keyframes shimmer  { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes pulse    { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(.85);opacity:.6} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.animate-fade-up  { animation: fadeUp  .6s ease both; }
.animate-fade-in  { animation: fadeIn  .5s ease both; }
.animate-scale-in { animation: scaleIn .4s ease both; }
.delay-1 { animation-delay:.1s; }
.delay-2 { animation-delay:.2s; }
.delay-3 { animation-delay:.3s; }
.delay-4 { animation-delay:.4s; }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }
.reveal-left  { opacity:0; transform:translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in  { opacity:1; transform:none; }
.reveal-scale { opacity:0; transform:scale(.95); transition: opacity .6s ease, transform .6s ease; }
.reveal-scale.in { opacity:1; transform:scale(1); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 8px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; font-weight: 900; color: var(--gold3);
  box-shadow: var(--shadow-xs);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1; }
.nav-logo-sub  { font-size: 9px; color: var(--muted2); text-transform: uppercase; letter-spacing: .18em; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 7px 14px; border-radius: var(--r3);
  transition: all var(--t);
}
.nav-link:hover { color: var(--ink); background: var(--bg2); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.lang-toggle { display: flex; align-items: center; background: var(--bg2); border-radius: 8px; padding: 2px; }
.lang-toggle a {
  font-size: 11px; font-weight: 600; color: var(--muted); padding: 4px 10px;
  border-radius: 6px; transition: all var(--t); letter-spacing: .06em;
}
.lang-toggle a.on { background: white; color: var(--ink); box-shadow: var(--shadow-xs); }
.cart-trigger {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r3); border: 1px solid var(--border);
  background: white; font-size: 13px; font-weight: 500; color: var(--ink);
  transition: all var(--t); box-shadow: var(--shadow-xs);
}
.cart-trigger:hover { border-color: var(--gold2); box-shadow: var(--shadow-gold); }
.cart-bubble {
  position: absolute; top: -6px; right: -6px; width: 18px; height: 18px;
  background: var(--gold); color: white; border-radius: 50%;
  font-size: 10px; font-weight: 700; display: none;
  align-items: center; justify-content: center; border: 2px solid white;
}
.cart-bubble.on { display: flex; animation: scaleIn .25s ease; }
.nav-cta {
  background: var(--ink); color: white !important; font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--r3); transition: all var(--t);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px; padding: 6px 12px;
  border: 1px solid var(--border); border-radius: var(--r3); background: white;
  font-size: 13px; font-weight: 500; color: var(--ink); transition: all var(--t);
  cursor: pointer; box-shadow: var(--shadow-xs);
}
.nav-user-btn:hover { border-color: var(--gold2); }
.nav-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: white; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: white; border: 1px solid var(--border); border-radius: var(--r2);
  box-shadow: var(--shadow-lg); display: none; overflow: hidden; z-index: 200;
  animation: scaleIn .2s ease;
}
.nav-dropdown.open { display: block; }
.nav-user-wrap { position: relative; }
.dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 13px; color: var(--ink);
  transition: background var(--t);
}
.dd-item:hover { background: var(--bg2); }
.dd-sep { height: 1px; background: var(--border); margin: 4px 0; }
.hamburger { display: none; padding: 8px; color: var(--muted); border-radius: var(--r3); transition: background var(--t); }
.hamburger:hover { background: var(--bg2); }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99; padding-top: var(--nav-h);
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px; animation: fadeUp .25s ease;
}
.mobile-nav-panel a {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  font-size: 15px; font-weight: 500; color: var(--ink); border-radius: var(--r3);
  transition: background var(--t);
}
.mobile-nav-panel a:hover { background: var(--bg2); }
.mobile-nav-cta {
  margin: 8px 16px 0; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px; background: var(--ink); color: white !important;
  border-radius: var(--r3); font-size: 14px; font-weight: 600;
}

/* ── FLASH ── */
.flash-wrap { padding: 0 24px; }
.flash {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-radius: var(--r3); margin: 12px auto; max-width: 1180px;
  font-size: 13px; font-weight: 500; animation: slideIn .3s ease;
}
.flash button { margin-left: auto; color: inherit; opacity: .6; font-size: 16px; }
.flash-ok  { background: var(--greenl); color: var(--green); border: 1px solid #bbf7d0; }
.flash-err { background: var(--redl);   color: var(--red);   border: 1px solid #fecaca; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity var(--t2);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; z-index: 201;
  background: white; border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--t2);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: none; }
.cart-top { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-top h2 { font-family: var(--serif); font-size: 22px; }
.cart-close { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 18px; transition: background var(--t); }
.cart-close:hover { background: var(--bg2); color: var(--ink); }
.cart-scroll { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; gap: 12px; color: var(--muted); }
.cart-empty-state svg { opacity: .3; }
.cart-line { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border2); }
.cart-line-emoji { font-size: 28px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bg2); border-radius: 10px; flex-shrink: 0; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.cart-line-price { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cart-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border); background: white; font-size: 15px; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all var(--t); }
.qty-btn:hover { border-color: var(--gold2); background: var(--goldl); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-bottom { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-type-tabs { display: flex; background: var(--bg2); border-radius: var(--r3); padding: 3px; margin-bottom: 16px; }
.cot-tab { flex: 1; padding: 9px; font-size: 12px; font-weight: 600; color: var(--muted); border-radius: 7px; transition: all var(--t); text-align: center; letter-spacing: .04em; }
.cot-tab.on { background: white; color: var(--ink); box-shadow: var(--shadow-xs); }
.cart-totals { margin-bottom: 16px; }
.cart-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 4px 0; }
.cart-row-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; color: var(--ink); padding: 12px 0 0; border-top: 1px solid var(--border); margin-top: 8px; }
.cart-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; border-radius: var(--r3);
  background: var(--ink); color: white !important; font-size: 14px; font-weight: 700;
  transition: all var(--t); letter-spacing: .03em;
}
.cart-cta:hover { background: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r3); font-size: 14px; font-weight: 600; transition: all var(--t); cursor: pointer; border: none; font-family: var(--sans); letter-spacing: .02em; }
.btn-primary { background: var(--ink); color: white !important; }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline { background: white; color: var(--ink) !important; border: 1.5px solid var(--border); box-shadow: var(--shadow-xs); }
.btn-outline:hover { border-color: var(--gold2); color: var(--gold) !important; transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%); color: white !important; box-shadow: var(--shadow-gold); }
.btn-gold:hover { opacity: .9; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--muted) !important; }
.btn-ghost:hover { color: var(--ink) !important; background: var(--bg2); }
.btn-danger { background: var(--red); color: white !important; }
.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: var(--r3); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--r2); }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.92) 40%,
      rgba(255,248,230,.88) 70%,
      rgba(250,240,210,.85) 100%),
    url('https://images.unsplash.com/photo-1544025162-d76594e7f261?w=1600&q=80&auto=format&fit=crop')
    center/cover no-repeat fixed;
}
/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-bg-1 {
  position: absolute; top: -200px; right: -200px; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-bg-2 {
  position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,17,16,.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--goldl); border: 1px solid rgba(184,134,11,.2);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; animation: pulse 2s infinite; }
.hero-h1 { font-size: clamp(52px, 5.5vw, 84px); font-weight: 900; line-height: .92; margin-bottom: 20px; color: var(--ink); letter-spacing: -.02em; }
.hero-sub { font-size: 12px; color: var(--muted2); text-transform: uppercase; letter-spacing: .2em; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.hero-p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right { position: relative; }
.hero-card {
  background: white; border-radius: 24px; padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border2);
  animation: float 6s ease-in-out infinite;
}
.hero-card-logo { text-align: center; margin-bottom: 28px; }
.hero-card-logo .logo-circle {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--ink) 0%, #333 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 30px; font-weight: 900; color: var(--gold3);
  box-shadow: var(--shadow);
}
.hero-card-logo h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.hero-card-logo p { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-stats-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.hsm { background: var(--bg2); border-radius: 12px; padding: 14px 12px; text-align: center; }
.hsm-n { font-family: var(--serif); font-size: 22px; font-weight: 900; color: var(--ink); }
.hsm-l { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-top: 2px; }
.hero-card-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--ink); color: white; border-radius: 14px; font-size: 14px; font-weight: 700; transition: all var(--t); }
.hero-card-cta:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.hero-float-badge {
  position: absolute; background: white; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); border: 1px solid var(--border2);
  display: flex; align-items: center; gap: 10px; animation: float 4s ease-in-out infinite;
}
.hero-float-badge.top { top: -20px; right: -10px; animation-delay: .5s; }
.hero-float-badge.bot { bottom: -10px; left: -20px; animation-delay: 1s; }
.hfb-icon { font-size: 22px; }
.hfb-text { font-size: 12px; }
.hfb-text strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.hfb-text span { color: var(--muted); font-size: 11px; }
.hero-divider { grid-column: 1/-1; height: 1px; background: var(--border); margin-top: 60px; }
.hero-stats-row { grid-column: 1/-1; display: flex; gap: 0; padding-top: 40px; }
.hero-stat { flex: 1; padding: 0 36px; border-right: 1px solid var(--border); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.hero-stat-n { font-family: var(--serif); font-size: 40px; font-weight: 900; color: var(--ink); letter-spacing: -.02em; }
.hero-stat-l { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── TICKER ── */
.ticker { background: var(--ink); padding: 13px 0; overflow: hidden; }
.ticker-inner { display: flex; animation: marquee 20s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 16px; white-space: nowrap; padding: 0 32px; font-size: 13px; color: rgba(255,255,255,.6); }
.ticker-item strong { color: var(--gold3); font-weight: 600; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold3); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-gray { background: var(--bg); }
.section-dark { background: var(--ink); color: white; }
.section-dark .sec-label { color: var(--gold3); }
.section-dark .sec-label::before { background: var(--gold3); }
.section-dark .sec-h2 { color: white; }
.sec-label { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 14px; }
.sec-label::before { content:''; width:24px; height:2px; background: var(--gold); border-radius: 1px; }
.sec-h2 { font-size: clamp(32px, 3.5vw, 54px); font-weight: 900; color: var(--ink); letter-spacing: -.02em; margin-bottom: 52px; line-height: 1.05; }
.sec-h2-sm { font-size: clamp(24px, 2.5vw, 38px); font-weight: 900; color: var(--ink); letter-spacing: -.02em; margin-bottom: 32px; }
.page-hero { padding: calc(var(--nav-h) + 60px) 0 60px; background: white; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(36px, 4vw, 64px); font-weight: 900; letter-spacing: -.02em; }
.page-hero p { font-size: 16px; color: var(--muted); margin-top: 10px; }

/* ── CARDS ── */
.card { background: white; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.card-pad { padding: 24px; }
.card-hdr { padding: 16px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.card-hdr h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; }

/* ── ORDER TYPE ── */
.ot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ot-card {
  display: block; padding: 36px 32px; border: 2px solid var(--border);
  border-radius: 20px; background: white; cursor: pointer;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.ot-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(135deg, var(--goldl), transparent);
  opacity: 0; transition: opacity .3s;
}
.ot-card:hover, .ot-card.sel { border-color: var(--gold2); box-shadow: var(--shadow-gold); }
.ot-card:hover::after, .ot-card.sel::after { opacity: 1; }
.ot-icon { font-size: 40px; margin-bottom: 18px; }
.ot-title { font-family: var(--serif); font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.ot-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.ot-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.ot-tag-green { background: var(--greenl); color: var(--green); }
.ot-tag-amber { background: var(--amberl); color: var(--amber); }

/* ── PRODUCTS ── */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.prod-card {
  background: white; border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; cursor: pointer; transition: all .3s ease;
}
.prod-card:hover { border-color: var(--gold2); box-shadow: var(--shadow); transform: translateY(-4px); }
.prod-img { height: 180px; display: flex; align-items: center; justify-content: center; background: var(--bg2); font-size: 72px; position: relative; overflow: hidden; }
.prod-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,134,11,.08), transparent); }
.prod-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: var(--ink); color: white; letter-spacing: .06em; text-transform: uppercase; }
.prod-body { padding: 20px; }
.prod-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.prod-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; min-height: 38px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-family: var(--serif); font-size: 24px; font-weight: 900; color: var(--ink); }
.prod-add { width: 38px; height: 38px; background: var(--ink); color: white; border-radius: 12px; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: all var(--t); font-weight: 700; }
.prod-add:hover { background: var(--gold); transform: scale(1.05); }

/* ── STORES ── */
.stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.store-card {
  background: white; border: 2px solid var(--border); border-radius: 20px;
  padding: 28px; transition: all .3s; display: block; cursor: pointer;
}
.store-card:hover, .store-card.sel { border-color: var(--gold2); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.store-tag { font-size: 10px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 8px; }
.store-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.store-status { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.dot-red { background: var(--red); }
.store-info { font-size: 13px; color: var(--muted); line-height: 1.8; }
.store-wait { display: flex; align-items: baseline; gap: 4px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.store-wait-n { font-family: var(--serif); font-size: 28px; font-weight: 900; color: var(--ink); }
.store-wait-l { font-size: 12px; color: var(--muted); }

/* ── MENU TABS ── */
.menu-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.mtab { padding: 9px 20px; font-size: 13px; font-weight: 500; color: var(--muted); border: 1.5px solid var(--border); border-radius: 100px; background: white; cursor: pointer; transition: all var(--t); }
.mtab:hover { border-color: var(--gold2); color: var(--ink); }
.mtab.on { background: var(--ink); color: white; border-color: var(--ink); font-weight: 600; }

/* ── FORMS ── */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { margin-bottom: 18px; }
.flabel { display: block; font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
.finput {
  width: 100%; background: white; border: 1.5px solid var(--border);
  color: var(--ink); padding: 12px 16px; font-size: 14px; font-family: var(--sans);
  border-radius: var(--r3); outline: none; transition: all var(--t);
}
.finput:focus { border-color: var(--gold2); box-shadow: 0 0 0 3px rgba(212,160,23,.1); }
.finput::placeholder { color: var(--muted2); }
textarea.finput { resize: vertical; min-height: 120px; }
select.finput { cursor: pointer; }
.finput-error { border-color: var(--red); }
.ferror { font-size: 12px; color: var(--red); margin-top: 4px; }

/* ── AUTH PAGES ── */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 60px; background: var(--ink); color: white; text-align: center; position: relative; overflow: hidden;
}
.auth-left::before { content:''; position:absolute; top:-200px; right:-200px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(212,160,23,.12) 0%,transparent 70%); }
.auth-left::after  { content:''; position:absolute; bottom:-100px; left:-100px; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(212,160,23,.06) 0%,transparent 70%); }
.auth-logo-big { font-family: var(--serif); font-size: 42px; font-weight: 900; color: white; line-height: 1; position: relative; }
.auth-logo-big span { color: var(--gold3); }
.auth-logo-tagline { font-size: 13px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .2em; margin-top: 8px; position: relative; }
.auth-right { display: flex; flex-direction: column; justify-content: center; padding: 60px; background: white; }
.auth-right h1 { font-size: 32px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 6px; }
.auth-right p { color: var(--muted); margin-bottom: 36px; }
.auth-link { font-size: 13px; color: var(--muted); margin-top: 20px; text-align: center; }
.auth-link a { color: var(--gold); font-weight: 600; }

/* ── CHECKOUT ── */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.checkout-section { margin-bottom: 32px; }
.checkout-title { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.checkout-title .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: white; font-size: 13px; font-family: var(--sans); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.order-summary-card { background: var(--bg2); border-radius: 20px; padding: 28px; border: 1px solid var(--border); position: sticky; top: calc(var(--nav-h) + 20px); }
.os-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.os-total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 22px; font-weight: 900; padding-top: 16px; }
.payment-method-card { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--bg2); border: 2px solid var(--border); border-radius: 14px; }
.payment-method-card.sel { border-color: var(--gold2); background: var(--goldl); }

/* ── ACCOUNT ── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.account-sidebar { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 24px; position: sticky; top: calc(var(--nav-h) + 20px); }
.account-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--ink), #333); color: white; font-family: var(--serif); font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.account-name { font-family: var(--serif); font-size: 20px; font-weight: 700; }
.account-email { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.acc-nav-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--r3); font-size: 14px; color: var(--muted); font-weight: 500; transition: all var(--t); margin-bottom: 4px; }
.acc-nav-item:hover, .acc-nav-item.on { color: var(--ink); background: var(--bg2); font-weight: 600; }

/* ── STATUS BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: .04em; }
.badge::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; opacity:.7; }
.badge-pending   { background: var(--amberl); color: var(--amber); }
.badge-confirmed { background: var(--bluel);  color: var(--blue); }
.badge-preparing { background: var(--amberl); color: var(--amber); }
.badge-ready     { background: var(--greenl); color: var(--green); }
.badge-delivered { background: var(--greenl); color: var(--green); }
.badge-cancelled { background: var(--redl);   color: var(--red); }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 11px 16px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); background: var(--bg); border-bottom: 1px solid var(--border); }
.data-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border2); vertical-align: middle; }
.data-table tr:hover td { background: var(--bg); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: var(--ink); color: white; padding: 14px 22px; border-radius: 14px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); transform: translateY(20px); opacity: 0; transition: all .35s cubic-bezier(.4,0,.2,1); pointer-events: none; max-width: 320px; display: flex; align-items: center; gap: 10px; }
.toast.show { transform: none; opacity: 1; }

/* ── FOOTER ── */
.footer { background: var(--ink); color: white; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand-name { font-family: var(--serif); font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.footer-brand-tag { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-brand-p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 220px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 10px; transition: color var(--t); }
.footer-col a:hover { color: var(--gold3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── ADMIN ── */
.admin-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  background: white; border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 28px; gap: 16px; box-shadow: var(--shadow-xs);
}
.admin-nav-brand { font-family: var(--serif); font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; margin-right: auto; }
.admin-nav-brand .mark { width: 30px; height: 30px; border-radius: 8px; background: var(--ink); color: var(--gold3); font-size: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 900; }
.admin-nav a { font-size: 12px; color: var(--muted); padding: 6px 12px; border-radius: var(--r3); transition: all var(--t); font-weight: 500; }
.admin-nav a:hover { color: var(--ink); background: var(--bg2); }
.admin-body { display: flex; padding-top: var(--nav-h); min-height: 100vh; }
.admin-sidebar {
  width: 240px; flex-shrink: 0; background: white; border-right: 1px solid var(--border);
  padding: 24px 12px; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.admin-sidebar-section { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted2); padding: 16px 12px 6px; }
.admin-sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r3); font-size: 13px; color: var(--muted); font-weight: 500; transition: all var(--t); margin-bottom: 2px; }
.admin-sidebar-link:hover, .admin-sidebar-link.on { color: var(--ink); background: var(--bg2); font-weight: 600; }
.admin-sidebar-link.on { background: var(--goldl); color: var(--gold); }
.admin-sidebar-link .icon { font-size: 16px; width: 20px; }
.admin-main { flex: 1; padding: 36px; background: var(--bg); min-width: 0; }
.admin-page-title { font-family: var(--serif); font-size: 30px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 4px; }
.admin-page-sub { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.admin-topbar { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: white; border: 1px solid var(--border); border-radius: var(--r2); padding: 22px 24px; box-shadow: var(--shadow-xs); }
.stat-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted2); margin-bottom: 10px; }
.stat-card-value { font-family: var(--serif); font-size: 34px; font-weight: 900; color: var(--ink); letter-spacing: -.02em; }
.stat-card-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stat-card.gold .stat-card-value { color: var(--gold); }
.stat-card.green .stat-card-value { color: var(--green); }
.stat-card.red .stat-card-value { color: var(--red); }
.admin-card { background: white; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-xs); }
.admin-card-header { padding: 16px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h3 { font-size: 15px; font-weight: 700; }
.admin-card-body { padding: 24px; }
.admin-input { border: 1.5px solid var(--border); padding: 9px 14px; border-radius: var(--r3); font-size: 13px; background: white; color: var(--ink); font-family: var(--sans); outline: none; transition: border-color var(--t); }
.admin-input:focus { border-color: var(--gold2); }
.admin-select { border: 1.5px solid var(--border); padding: 9px 14px; border-radius: var(--r3); font-size: 13px; background: white; color: var(--ink); font-family: var(--sans); outline: none; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { margin: 0 auto 24px; }
  .hero-stats-row { grid-column: 1; }
  .hero-stat { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .checkout-layout, .account-layout { grid-template-columns: 1fr; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .ot-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .prod-grid { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 20px; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .hero-stats-row { flex-wrap: wrap; gap: 24px; }
  .hero-stat { border-right: none; padding: 0; }
}
