/* ══════════════════════════════════════════
   MAKRONA — style.css
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy: #6B1A2A;
  --burgundy-mid: #8B2A3E;
  --burgundy-pale: #F5EAEC;
  --burgundy-softest: #FAF4F5;
  --black: #111010;
  --off-white: #FAF8F4;
  --white: #FFFFFF;
  --pastel-yellow: #F5EFC4;
  --pastel-blue: #C8DCE8;
  --mango: #FFD9A0;
  --berry: #E8D0EC;
  --choco: #D4B896;
  --gold: #BFA06A;
  --gold-light: #D4B98A;
  --text-body: #2A2420;
  --text-muted: #8A7A70;
  --border-light: rgba(107,26,42,0.10);
  --border-mid: rgba(107,26,42,0.18);
  --vipps: #FF5B24;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--off-white);
  color: var(--text-body);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  background: var(--white); border-radius: 50%;
  transition: width .12s ease, height .12s ease, background .15s ease;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(191,160,106,.85);
  transition: width .18s cubic-bezier(.22,1,.36,1), height .18s cubic-bezier(.22,1,.36,1), border-color .2s;
}
.cursor-ring::before, .cursor-ring::after {
  content: ''; position: absolute; background: rgba(191,160,106,.85); transition: background .2s;
}
.cursor-ring::before { width: 1.5px; height: 6px; top: -4px; left: 50%; transform: translateX(-50%); }
.cursor-ring::after  { width: 6px; height: 1.5px; left: -4px; top: 50%; transform: translateY(-50%); }
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 10px; height: 10px; background: var(--gold); }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: rgba(191,160,106,1); }

/* ── ANNOUNCEMENT ── */
.announcement {
  background: var(--black); color: var(--pastel-yellow);
  text-align: center; padding: 10px 20px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 300;
  position: relative; overflow: hidden;
}
.announcement::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(191,160,106,.04) 80px, rgba(191,160,106,.04) 81px);
}
.announcement a { color: var(--gold); text-decoration: none; border-bottom: 0.5px solid var(--gold); margin-left: 4px; transition: opacity .2s; }
.announcement a:hover { opacity: .7; }
.ann-dot { color: var(--gold); margin: 0 8px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,16,16,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: .22em;
  font-weight: 600; color: var(--white); text-decoration: none; text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-decoration: none; transition: color .25s; font-weight: 300;
}
.nav-links a:hover { color: var(--pastel-yellow); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

.lang-toggle {
  display: flex; background: rgba(255,255,255,.07);
  border: 0.5px solid rgba(255,255,255,.18); border-radius: 3px; overflow: hidden;
}
.lang-btn {
  background: transparent; border: none; color: rgba(255,255,255,.4);
  font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .14em;
  font-weight: 400; cursor: pointer; padding: 7px 12px; transition: all .2s;
}
.lang-btn.active { background: var(--burgundy); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--white); }

.nav-cart-btn {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); cursor: pointer; padding: 8px 18px;
  border: 0.5px solid rgba(255,255,255,.3); border-radius: 2px;
  transition: all .25s; background: transparent;
  font-family: 'Jost', sans-serif; font-weight: 300;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cart-btn .nav-arrow { color: var(--white); font-size: 14px; }
.nav-cart-btn:hover { background: var(--burgundy); border-color: var(--burgundy); }

.cart-badge {
  background: var(--gold); color: var(--black); font-size: 9px; font-weight: 500;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
  animation: badgePop .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes badgePop { from{transform:scale(0)} to{transform:scale(1)} }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.7); transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(17,16,16,.98); z-index: 99; padding: 40px 32px;
  flex-direction: column; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
  color: var(--white); text-decoration: none; letter-spacing: .08em;
}
.mobile-menu a:hover { color: var(--pastel-yellow); }
.mobile-lang { display: flex; gap: 8px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--burgundy); color: var(--white); border: none;
  padding: 16px 32px; font-family: 'Jost', sans-serif; font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; transition: all .3s; border-radius: 2px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary .arrow { color: var(--white); font-size: 15px; }
.btn-primary:hover { background: var(--burgundy-mid); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; border: 0.5px solid rgba(255,255,255,.35);
  padding: 16px 28px; font-family: 'Jost', sans-serif; font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 300;
  cursor: pointer; transition: all .25s; border-radius: 2px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8);
}
.btn-ghost .arrow { color: var(--white); font-size: 15px; }
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.7); }

.arrow { color: var(--white) !important; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: inline-block; width: 20px; height: 0.5px; background: var(--gold); }
.section-label.light::before { background: rgba(191,160,106,.7); }
.section-label.light { color: rgba(191,160,106,.7); }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }
.label-line { display: inline-block; width: 20px; height: 0.5px; background: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--black);
  position: relative; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(107,26,42,.35) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(191,160,106,.08) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 60px 100px 80px;
}
.hero-eyebrow {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; font-weight: 400; display: flex; align-items: center; gap: 12px;
  animation: fadeUp .8s ease .2s both;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 0.5px; background: var(--gold); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(52px,6vw,84px);
  line-height: 1; font-weight: 300; color: var(--white); margin-bottom: 12px;
  animation: fadeUp .9s ease .35s both;
}
.hero-h1 em { font-style: italic; color: var(--pastel-yellow); display: block; }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic;
  color: rgba(255,255,255,.45); margin-bottom: 40px; font-weight: 300; line-height: 1.4; max-width: 340px;
  animation: fadeUp .9s ease .5s both;
}
.hero-desc {
  font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.8; max-width: 300px;
  margin-bottom: 48px; letter-spacing: .03em; font-weight: 200;
  animation: fadeUp .8s ease .6s both;
}
.hero-cta-group { display: flex; gap: 16px; align-items: center; animation: fadeUp .8s ease .75s both; }
.hero-right {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
  animation: fadeUp 1s ease .5s both;
}
.fatcaron-visual { position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; }
.fatcaron-glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,26,42,.6) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.1);opacity:1} }
.fatcaron-svg { position: relative; z-index: 2; animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-detail-text {
  position: absolute; bottom: 60px; right: 60px;
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  font-style: italic; color: rgba(255,255,255,.25); letter-spacing: .1em; text-align: right;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.25); font-weight: 300;
}
.hero-scroll::after {
  content: ''; display: block; width: 40px; height: 0.5px; background: rgba(255,255,255,.2);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{width:40px;opacity:.3} 50%{width:60px;opacity:.6} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── STATS BAND ── */
.stats-band {
  background: var(--burgundy); padding: 28px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,.03) 120px, rgba(255,255,255,.03) 121px);
}
.stat { text-align: center; position: relative; z-index: 1; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--pastel-yellow); line-height: 1; }
.stat-label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; font-weight: 300; }
.stat-divider { width: 0.5px; height: 48px; background: rgba(255,255,255,.15); }

/* ── CONCEPT ── */
.concept {
  padding: 120px 80px; background: var(--off-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.concept-h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; line-height: 1.05; font-weight: 300; color: var(--black); margin-bottom: 28px; }
.concept-h2 em { font-style: italic; color: var(--burgundy); }
.concept-body { font-size: 14px; line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-bottom: 16px; }
.concept-sig { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--burgundy); margin-top: 32px; font-weight: 300; }

.flavor-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.flavor-card {
  border-radius: 10px; overflow: hidden; transition: transform .3s ease;
  position: relative; display: flex; flex-direction: column;
}
.flavor-card:hover { transform: translateY(-5px); }
.flavor-card.mango { background: var(--mango); }
.flavor-card.berry { background: var(--berry); }
.flavor-card.choco { background: var(--choco); }
.flavor-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.flavor-icon-wrap {
  width: 48px; height: 48px; border-radius: 50%; margin: 22px 20px 14px;
  display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.45);
}
.flavor-body { padding: 0 20px 22px; }
.flavor-tag {
  position: absolute; top: 12px; right: 12px; font-size: 8px; letter-spacing: .1em;
  text-transform: uppercase; background: rgba(255,255,255,.5); color: var(--black);
  padding: 3px 8px; border-radius: 20px; font-weight: 400;
}
.flavor-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
.flavor-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ── PRODUCTS ── */
.products { padding: 120px 80px; background: var(--black); position: relative; overflow: hidden; }
.products-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(107,26,42,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(191,160,106,.06) 0%, transparent 50%);
}
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; position: relative; z-index: 1; }
.products-h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; line-height: 1; font-weight: 300; color: var(--white); }
.products-h2 em { font-style: italic; color: var(--pastel-yellow); display: block; }
.products-note { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(255,255,255,.3); max-width: 200px; text-align: right; line-height: 1.6; }

.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; z-index: 1; }
.product-card {
  background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.08);
  border-radius: 8px; overflow: hidden; transition: all .35s ease; cursor: default;
}
.product-card:hover { background: rgba(255,255,255,.07); border-color: rgba(191,160,106,.3); transform: translateY(-6px); }
.product-card.featured { border-color: rgba(107,26,42,.6); background: rgba(107,26,42,.2); }
.product-card.featured:hover { border-color: rgba(107,26,42,.9); }

.product-visual {
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-visual.v1 { background: linear-gradient(135deg,#3A2830,#4A2040); }
.product-visual.v2 { background: linear-gradient(135deg,#1E2A35,#243040); }
.product-visual.v3 { background: linear-gradient(135deg,#2E1A20,#3A2030); }
.product-visual.v4 { background: linear-gradient(135deg,#4A1020,#6B1A2A); }

.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.product-card:hover .product-img { transform: scale(1.06); }

.product-mac-placeholder { display: flex; flex-direction: column; align-items: center; }
.pv-shell { border-radius: 40%; background: rgba(255,255,255,.12); border: 0.5px solid rgba(255,255,255,.08); }
.pv-cream { background: rgba(255,255,255,.18); }

.product-badge { position: absolute; top: 12px; left: 12px; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; font-weight: 400; z-index: 2; }
.badge-popular { background: var(--burgundy); color: var(--white); }
.badge-catering { background: var(--pastel-yellow); color: var(--black); }

.product-count { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: rgba(255,255,255,.08); position: absolute; top: 12px; right: 16px; line-height: 1; z-index: 1; }

.flavor-chips { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.flavor-chip { width: 10px; height: 10px; border-radius: 50%; border: 0.5px solid rgba(255,255,255,.3); }

.product-body { padding: 20px 20px 22px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.product-desc { font-size: 10px; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 18px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--pastel-yellow); font-weight: 300; }
.product-price span { font-size: 12px; color: rgba(255,255,255,.3); font-family: 'Jost', sans-serif; font-weight: 200; margin-left: 2px; }

/* Product stepper */
.ps-add-btn {
  background: var(--burgundy); border: none; border-radius: 20px;
  color: var(--white); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 14px; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 400;
  transition: background .2s; white-space: nowrap;
}
.ps-add-btn:hover { background: var(--burgundy-mid); }
.ps-add-btn.gold-btn { background: var(--gold); color: var(--black); }
.ps-add-btn.gold-btn:hover { background: var(--gold-light); }

.product-stepper { display: flex; align-items: center; gap: 0; border: 0.5px solid rgba(255,255,255,.15); border-radius: 20px; overflow: hidden; }
.ps-btn {
  width: 30px; height: 30px; background: transparent; border: none; color: rgba(255,255,255,.7);
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s; font-family: 'Jost', sans-serif; font-weight: 300;
}
.ps-btn:hover { background: var(--burgundy); color: var(--white); }
.product-card.featured .ps-btn:hover { background: var(--gold); color: var(--black); }
.ps-num { min-width: 28px; text-align: center; font-size: 13px; color: var(--white); font-weight: 400; font-family: 'Jost', sans-serif; }
.ps-num.bump { animation: numBump .2s ease; }
@keyframes numBump { 0%{transform:scale(1.3)} 100%{transform:scale(1)} }

/* ── PICKUP ── */
.pickup {
  padding: 100px 80px; background: var(--burgundy-softest);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.pickup-h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--black); line-height: 1.05; margin-bottom: 24px; }
.pickup-h2 em { font-style: italic; color: var(--burgundy); }
.pickup-body { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.pickup-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.pickup-detail {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: var(--white); border-radius: 6px; border: 0.5px solid var(--border-light);
}
.pickup-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--burgundy-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pickup-icon svg { width: 16px; height: 16px; }
.pickup-detail-label { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 2px; }
.pickup-detail-value { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--text-body); font-weight: 300; }

/* Preorder card */
.preorder-card {
  background: var(--black); border-radius: 12px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.preorder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), transparent);
}
.preorder-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.preorder-sub { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(255,255,255,.35); margin-bottom: 32px; }

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.form-row-2 .form-group { margin-bottom: 0; }
.form-label { display: block; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); font-weight: 400; margin-bottom: 7px; }
.form-input {
  width: 100%; background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 12px 14px; font-family: 'Jost', sans-serif;
  font-size: 13px; color: var(--white); font-weight: 300; transition: border-color .2s; outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,.2); }
.form-input:focus { border-color: rgba(107,26,42,.7); }
.form-select {
  width: 100%; background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 12px 14px; font-family: 'Jost', sans-serif;
  font-size: 13px; color: var(--white); font-weight: 300; outline: none;
  cursor: pointer; appearance: none; -webkit-appearance: none;
}
.form-select option { background: #1a1a1a; color: var(--white); }
.form-select:focus { border-color: rgba(107,26,42,.7); }
.form-note { font-family: 'Cormorant Garamond', serif; font-size: 12px; color: rgba(255,255,255,.2); margin-top: 8px; line-height: 1.5; font-style: italic; }

.btn-submit {
  width: 100%; background: var(--burgundy); color: var(--white); border: none;
  padding: 16px; font-family: 'Jost', sans-serif; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; transition: all .3s; border-radius: 4px; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--burgundy-mid); }

/* ── CHECKOUT ── */
.checkout { padding: 100px 80px; background: var(--off-white); display: none; }
.checkout.visible { display: block; }
.checkout-header { text-align: center; margin-bottom: 64px; }
.checkout-h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--black); margin-bottom: 8px; }
.checkout-h2 em { font-style: italic; color: var(--burgundy); }
.checkout-sub { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--text-muted); }

.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; max-width: 1100px; margin: 0 auto; align-items: start; }

/* Order summary */
.order-summary {
  background: var(--white); border: 0.5px solid var(--border-light);
  border-radius: 12px; padding: 36px 32px;
}
.summary-title { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.summary-title::before { content: ''; display: inline-block; width: 16px; height: 0.5px; background: var(--gold); }

.cart-empty { text-align: center; padding: 40px 0; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--text-muted); }
.cart-empty-icon { font-size: 40px; margin-bottom: 12px; opacity: .4; }
.cart-items { display: flex; flex-direction: column; }

.cart-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 0;
  border-bottom: 0.5px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 52px; height: 52px; border-radius: 6px; flex-shrink: 0;
  background: var(--burgundy-pale); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--burgundy);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 400; color: var(--black); margin-bottom: 2px; }
.cart-item-meta { font-size: 11px; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 0.5px solid var(--border-mid);
  background: transparent; cursor: pointer; font-size: 14px; color: var(--text-body);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
  font-family: 'Jost', sans-serif;
}
.qty-btn:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.qty-num { font-size: 14px; font-weight: 400; color: var(--black); min-width: 20px; text-align: center; }
.cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--burgundy); font-weight: 400; min-width: 64px; text-align: right; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 16px; padding: 4px; transition: color .2s; }
.cart-item-remove:hover { color: var(--burgundy); }

.order-totals { margin-top: 24px; padding-top: 20px; border-top: 0.5px solid var(--border-mid); }
.total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13px; color: var(--text-muted); }
.total-row.grand { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--black); font-weight: 400; margin-top: 12px; padding-top: 12px; border-top: 0.5px solid var(--border-light); margin-bottom: 0; }
.total-row.grand span:last-child { color: var(--burgundy); }
.free-label { color: #2A7A4A; }

.pickup-tag {
  margin-top: 20px; background: var(--burgundy-pale); border-radius: 6px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--burgundy);
}
.pickup-tag svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Payment form */
.payment-form {
  background: var(--black); border-radius: 12px; padding: 40px 36px;
  position: relative; overflow: hidden;
}
.payment-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), transparent);
}
.pay-section-title {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 400; margin-bottom: 16px; margin-top: 24px;
}
.pay-section-title:first-of-type { margin-top: 0; }

.pay-method-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.pay-method {
  border: 1.5px solid rgba(255,255,255,.1); border-radius: 8px; padding: 14px 16px;
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px; background: rgba(255,255,255,.03);
}
.pay-method:hover { border-color: rgba(191,160,106,.4); }
.pay-method.selected { border-color: var(--gold); background: rgba(191,160,106,.08); }
.vipps-logo { color: var(--vipps); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }
.pay-method-label { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.card-chip-preview { width: 28px; height: 20px; border-radius: 3px; background: linear-gradient(135deg,#C8A44A,#E8C870); border: 0.5px solid rgba(255,255,255,.2); }

.pay-panel { display: none; }
.pay-panel.active { display: block; }

.vipps-panel {
  background: rgba(255,91,36,.06); border: 1px solid rgba(255,91,36,.2);
  border-radius: 8px; padding: 24px; text-align: center; margin-bottom: 16px;
}
.vipps-send-label { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.vipps-number { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--vipps); font-weight: 600; letter-spacing: .04em; margin-bottom: 6px; }
.vipps-name { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.vipps-steps { text-align: left; display: flex; flex-direction: column; gap: 10px; }
.vipps-step { display: flex; gap: 12px; align-items: flex-start; }
.vipps-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,91,36,.15); border: 1px solid rgba(255,91,36,.3);
  color: var(--vipps); font-size: 11px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.vipps-step-text { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

.card-preview {
  background: linear-gradient(135deg,#2A1820,#3A2030); border: 0.5px solid rgba(191,160,106,.2);
  border-radius: 10px; padding: 20px; margin-bottom: 20px; height: 80px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.card-preview-top { display: flex; justify-content: space-between; align-items: center; }
.card-preview-chip { width: 28px; height: 20px; border-radius: 3px; background: linear-gradient(135deg,#C8A44A,#E8C870); }
.card-preview-brand { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.card-preview-num { font-size: 14px; letter-spacing: .18em; color: rgba(255,255,255,.5); font-family: 'Jost', sans-serif; font-weight: 300; }

.pay-btn {
  width: 100%; padding: 18px; background: var(--burgundy); color: var(--white); border: none;
  font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; border-radius: 6px; transition: all .3s; margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.pay-btn:hover { background: var(--burgundy-mid); }
.pay-btn.vipps-btn { background: var(--vipps); }
.pay-btn.vipps-btn:hover { background: #e04d1c; }

.secure-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 14px; font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .06em;
}
.secure-note svg { width: 12px; height: 12px; }

/* Order success */
.order-success { display: none; text-align: center; padding: 80px 40px; max-width: 560px; margin: 0 auto; }
.order-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(42,122,74,.12); border: 1.5px solid rgba(42,122,74,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 28px; color: #2A7A4A;
}
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--black); margin-bottom: 12px; }
.success-sub { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }
.success-order-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.success-order-val { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--black); }

/* ── INSTAGRAM ── */
.instagram { padding: 100px 80px; background: var(--off-white); text-align: center; }
.ig-h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--black); margin-bottom: 12px; }
.ig-h2 em { font-style: italic; color: var(--burgundy); }
.ig-sub { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--text-muted); margin-bottom: 48px; }
.ig-handle {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic;
  font-weight: 300; color: var(--gold); text-decoration: none;
  display: inline-block; margin-bottom: 36px; transition: opacity .2s;
}
.ig-handle:hover { opacity: .7; }
.ig-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 44px; }
.ig-tile {
  aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer; transition: transform .3s;
}
.ig-tile:hover { transform: scale(1.03); }
.ig-tile.c1 { background: var(--mango); }
.ig-tile.c2 { background: var(--berry); }
.ig-tile.c3 { background: var(--choco); }
.ig-tile.c4 { background: var(--pastel-blue); }
.ig-inner { width: 50%; height: 50%; border-radius: 50%; background: rgba(255,255,255,.5); }
.ig-overlay {
  position: absolute; inset: 0; background: rgba(107,26,42,.75);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--white); font-weight: 300;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 12px; background: var(--black); color: var(--white);
  text-decoration: none; padding: 16px 40px; border-radius: 4px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 300; transition: all .3s;
}
.ig-follow-btn:hover { background: var(--burgundy); }

/* ── ABOUT ── */
.about { padding: 120px 80px; background: var(--black); position: relative; overflow: hidden; }
.about::before {
  content: ''; position: absolute; bottom: 0; right: 0; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,26,42,.2) 0%, transparent 70%); pointer-events: none;
}
.about-inner { max-width: 680px; position: relative; z-index: 1; }
.about-h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 32px; }
.about-h2 em { font-style: italic; color: var(--pastel-yellow); }
.about-body { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
.about-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic;
  color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.4;
  padding-left: 24px; border-left: 2px solid var(--burgundy); margin: 40px 0;
}
.event-card {
  background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 28px 32px; display: flex; align-items: center; gap: 24px; margin-top: 40px;
}
.event-date { text-align: center; flex-shrink: 0; }
.event-day { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--pastel-yellow); line-height: 1; }
.event-month { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); font-weight: 300; }
.event-divider { width: 0.5px; height: 60px; background: rgba(255,255,255,.1); }
.event-info { flex: 1; }
.event-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); font-weight: 400; margin-bottom: 4px; }
.event-location { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .08em; font-weight: 300; }
.event-status {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(191,160,106,.15); color: var(--gold); padding: 6px 14px;
  border-radius: 20px; border: 0.5px solid rgba(191,160,106,.3); font-weight: 400; white-space: nowrap;
}

/* ── FOOTER ── */
footer { background: var(--black); border-top: 0.5px solid rgba(255,255,255,.06); padding: 60px 80px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; letter-spacing: .18em; font-weight: 600; color: var(--white); text-transform: uppercase; margin-bottom: 12px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(255,255,255,.25); margin-bottom: 20px; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 32px; height: 32px; border: 0.5px solid rgba(255,255,255,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: all .25s; font-size: 11px; color: rgba(255,255,255,.4);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); font-weight: 400; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: none; font-weight: 300; transition: color .2s; letter-spacing: .04em; }
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 0.5px solid rgba(255,255,255,.06); padding-top: 28px;
  font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .06em; font-weight: 200;
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--white); border: 0.5px solid var(--border-mid);
  border-radius: 8px; padding: 16px 24px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px;
  color: var(--text-body); box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 1000; transform: translateY(100px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-actions .lang-toggle { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 32px 60px; }
  .hero-right { display: none; }

  .stats-band { padding: 28px 32px; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }

  .concept { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .flavor-grid { grid-template-columns: 1fr; }

  .products { padding: 80px 32px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .products-note { text-align: left; max-width: 100%; }
  .product-grid { grid-template-columns: 1fr 1fr; }

  .pickup { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .checkout { padding: 80px 32px; }
  .checkout-grid { grid-template-columns: 1fr; }

  .instagram { padding: 80px 32px; }
  .ig-grid { grid-template-columns: 1fr 1fr; }

  .about { padding: 80px 32px; }
  footer { padding: 48px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 44px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .pay-method-group { grid-template-columns: 1fr 1fr; }
}
