/* ═══════════════════════════════════════════
   ztiramisu — Main Stylesheet
   Tiramisu artisanal · Genève
   ═══════════════════════════════════════════ */

:root {
  --cream: #F5EDE3;
  --espresso: #2C1810;
  --cocoa: #5C3D2E;
  --caramel: #C8956C;
  --mascarpone: #FFF8F0;
  --gold: #D4A853;
  --ladyfinger: #E8D5B7;
  --dark-chocolate: #1A0E08;
  --soft-shadow: rgba(44, 24, 16, 0.08);
  --text-muted: #8B7260;
  --success: #4A8C5C;
  --danger: #C25B5B;
  --info: #5B8EC2;
  /* Radius scale */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow: hidden;
  height: 100%;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--espresso);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

#app-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.cart-open #app-content { overflow: hidden; }

/* ─── SKIP LINK ─── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.8rem 1.5rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 1rem;
  outline: 2px solid var(--caramel);
  outline-offset: 2px;
}

/* ─── SHARED INPUT BASE ─── */
.ct-input,
.ck-input,
.acc-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--espresso);
  background: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  outline: none;
}
.ct-input:focus,
.ck-input:focus,
.acc-input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.2);
}
.ct-input::placeholder,
.ck-input::placeholder,
.acc-input::placeholder {
  color: rgba(139, 114, 96, 0.5);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── NAV ─── */
nav#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 237, 227, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  transition: all 0.4s ease;
}

nav#navbar.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 30px var(--soft-shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--espresso);
  cursor: pointer;
  text-decoration: none;
}
.logo span { color: var(--caramel); }
.logo em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--cocoa);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--caramel);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--espresso); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cocoa);
  transition: color 0.3s;
}
.nav-login-btn:hover { color: var(--espresso); }

.nav-account-btn {
  color: var(--cocoa);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.nav-account-btn:hover { color: var(--espresso); }

/* ─── NAV ORDER TRACKING BUTTON ─── */
.nav-order-track-btn {
  background: none;
  border: none;
  color: var(--caramel);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.4rem;
  transition: color 0.3s;
}
.nav-order-track-btn:hover { color: var(--espresso); }
.nav-order-track-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  animation: pulse 2s infinite;
}

/* ─── ORDER TRACKING MODAL ─── */
.otm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.otm-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.otm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 440px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: var(--mascarpone);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.otm-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Close button — X icon, no bg */
.otm-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}
.otm-close:hover {
  color: var(--espresso);
  transform: scale(1.2);
}

/* Sticky hero status banner */
.otm-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.8rem 1.6rem;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, rgba(200,149,108,0.1), rgba(44,24,16,0.05));
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  flex-shrink: 0;
}
.otm-hero.status-confirmed { background: linear-gradient(135deg, rgba(74,140,92,0.1), rgba(74,140,92,0.03)); }
.otm-hero.status-preparing { background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(212,168,83,0.03)); }
.otm-hero.status-ready { background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(200,149,108,0.05)); }
.otm-hero.status-en_route { background: linear-gradient(135deg, rgba(91,142,194,0.12), rgba(91,142,194,0.03)); }
.otm-hero.status-delivered { background: linear-gradient(135deg, rgba(74,140,92,0.12), rgba(74,140,92,0.03)); }
.otm-hero-status {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}
.otm-hero-number {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.6);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-top: 0.3rem;
}

/* Scrollable body */
.otm-body {
  padding: 1.5rem 1.8rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.otm-body .odl-timeline {
  padding-left: 2.5rem;
}

/* Sticky footer */
.otm-footer {
  flex-shrink: 0;
  padding: 1rem 1.8rem 1.5rem;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
  background: var(--mascarpone);
}
.otm-detail-link {
  display: block;
  text-align: center;
  padding: 0.7rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  background: var(--espresso);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.otm-detail-link:hover { background: var(--cocoa); }

.cart-btn {
  background: var(--espresso);
  color: var(--cream);
  border: none;
  padding: 0.55rem 1rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-btn:hover { background: var(--cocoa); transform: translateY(-1px); }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--caramel);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Lang Switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  background: none;
  border: 1px solid var(--cocoa);
  color: var(--cocoa);
  padding: 0.3rem 0.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}
.lang-btn:hover { background: var(--cocoa); color: var(--cream); }

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--mascarpone);
  border: 1px solid rgba(44, 24, 16, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 20px var(--soft-shadow);
  display: none;
  flex-direction: column;
  min-width: 50px;
  z-index: 10;
}
.lang-dropdown.open { display: flex; }
.lang-dropdown a {
  padding: 0.5rem 0.8rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cocoa);
  transition: background 0.2s;
  text-align: center;
}
.lang-dropdown a:hover,
.lang-dropdown a.active { background: var(--cream); color: var(--espresso); }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--espresso);
  transition: all 0.3s;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 8, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--mascarpone);
  z-index: 151;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--cocoa);
}
.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
}
.mobile-nav-links li a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cocoa);
  transition: all 0.2s;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  background: var(--cream);
  color: var(--espresso);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2.2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200, 149, 108, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(92, 61, 46, 0.04) 0%, transparent 70%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  border: 1px solid var(--caramel);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
}

.hero-sub {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-content {
  padding-bottom: 5rem;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--caramel);
  margin: 0.8rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border: none;
  padding: 1rem 3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  border-radius: 2px;
}
.btn-primary:hover {
  background: var(--cocoa);
  color: var(--cream);
}

.btn-secondary {
  background: var(--espresso);
  color: var(--cream);
  border: none;
  padding: 1rem 3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  border-radius: 2px;
}
.btn-secondary:hover {
  background: var(--cocoa);
  color: var(--cream);
}

.btn-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
}

.btn-caramel {
  background: var(--espresso);
  color: var(--cream);
}
.btn-caramel:hover {
  background: var(--cocoa);
  color: var(--cream);
}

.btn-danger {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

/* Form buttons */
button.btn,
input[type="submit"].btn {
  cursor: pointer;
}
button.btn:disabled,
input[type="submit"].btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
}

/* Auth form overrides */
.auth-card .form-group {
  margin-bottom: 1rem;
}
.auth-card .form-control {
  padding: .625rem .875rem;
  font-size: .9375rem;
  border-radius: .5rem;
}
.auth-card .btn-block {
  margin-top: .5rem;
  padding: .7rem 1rem;
  font-size: .9375rem;
  border-radius: 2px;
  background: var(--espresso);
  color: var(--cream);
  border: none;
}
.auth-card .btn-block:hover {
  background: var(--cocoa);
}

/* ─── SECTION TITLES ─── */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title .overtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
  margin-bottom: 1rem;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}
.section-title h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
}

/* ─── PRODUCTS GRID ─── */
.products-section {
  padding: 6rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
  gap: 2.5rem;
  justify-content: center;
}

.product-card {
  background: var(--mascarpone);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  max-width: 320px;
  box-shadow: 0 2px 20px var(--soft-shadow);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.12);
}

.product-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.product-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.product-card:hover .product-img-inner { transform: scale(1.05); }

.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.product-info {
  padding: 1.5rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cocoa);
}
.product-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.product-price-promo {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-right: 0.5rem;
}

.add-btn {
  width: 35px; height: 35px;
  border-radius: 6px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.add-btn:hover {
  background: var(--cream);
  transform: scale(1.1);
}
.add-btn.added {
  background: var(--caramel);
  border-color: var(--caramel);
  color: white;
  transform: rotate(0);
}

/* ─── STOCK BADGES ─── */
.stock-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}
.stock-out {
  background: #e74c3c;
  color: #fff;
}
.stock-low {
  background: #f39c12;
  color: #fff;
}
.stock-ok {
  background: var(--caramel);
  color: #fff;
}
.product-out {
  opacity: 0.7;
}
.product-out .add-btn { display: none; }
.pd-stock {
  margin-bottom: 1rem;
}
.pd-stock .stock-badge {
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
}
.pd-add-btn.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 6rem 3rem;
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(200, 149, 108, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
}
.how-it-works .section-title h2 { color: var(--cream); }

.steps {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.step {
  flex: 1;
  text-align: center;
  padding: 2rem;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--caramel);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1; }
.step-icon img { width: 48px; height: 48px; }
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.step p {
  font-size: 0.95rem;
  color: var(--ladyfinger);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── DELIVERY INFO ─── */
.delivery-info {
  padding: 5rem 3rem;
  background: linear-gradient(135deg, var(--ladyfinger) 0%, var(--cream) 100%);
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.delivery-item { padding: 2rem 1.5rem; }
.delivery-icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.delivery-icon img { width: 48px; height: 48px; }
.delivery-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.delivery-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 6rem 0;
  overflow: hidden;
}
.testimonials-section .section-title {
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
/* ── Testimonials Marquee ── */
.testimonials-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 1rem 0 2rem;
}
.testimonials-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}
.testimonial {
  background: var(--mascarpone);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 20px var(--soft-shadow);
  position: relative;
  min-width: 340px;
  max-width: 400px;
  flex-shrink: 0;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--caramel);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--cocoa);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stars {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.rv-star-empty { color: #ddd; }
/* Testimonials Nav Arrows */
.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--mascarpone);
  color: var(--espresso);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.12);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.testimonials-marquee-wrap:hover .testimonials-nav {
  opacity: 1;
}
.testimonials-nav:hover {
  background: var(--espresso);
  color: var(--cream);
}
.testimonials-prev { left: 1rem; }
.testimonials-next { right: 1rem; }

.testimonials-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 0 2rem;
}

/* ─── CART SIDEBAR ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 8, 0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-overlay.open ~ #chatWidgetRoot .chat-bubble { display: none; }

.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(450px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: var(--mascarpone);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 60px rgba(44, 24, 16, 0.15);
}
.cart-panel.open { transform: translateX(0); }

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 { font-size: 1.5rem; }
.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--cocoa);
  transition: color 0.3s;
}
.close-cart:hover { color: var(--espresso); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  align-items: center;
}
.cart-item-emoji {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.1);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.cart-item-price {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--cocoa);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--espresso);
}
.qty-btn:hover { background: var(--espresso); color: var(--cream); }

.cart-footer {
  padding: 1.5rem 2rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  flex-shrink: 0;
  background: var(--mascarpone);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.cart-total-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--espresso);
}
.cart-delivery-note {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}
.cart-delivery-note.free { color: var(--success); }

.checkout-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.checkout-btn:hover { background: var(--cocoa); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-style: italic;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label,
.form-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: .5rem;
  letter-spacing: 0;
  text-transform: none;
}
.form-label-secondary {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 400;
}
.form-control {
  width: 100%;
  padding: .625rem 1rem;
  border: 0.0625rem solid rgba(44, 24, 16, 0.1);
  border-radius: .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--espresso);
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
  outline: 0;
  border-color: rgba(200, 149, 108, 0.4);
  box-shadow: 0 0 1rem 0 rgba(200, 149, 108, 0.2);
  color: var(--espresso);
  background-color: #fff;
}
.form-control::placeholder {
  color: var(--text-muted);
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: var(--cream);
  opacity: 1;
}
.form-control-sm {
  padding: .5rem .875rem;
  font-size: .8125rem;
  border-radius: .5rem;
  min-height: calc(1.5em + 1.125rem);
}
.form-control-lg {
  padding: .75rem 1rem;
  font-size: 1.125rem;
  border-radius: .5rem;
  min-height: calc(1.5em + 1.625rem);
}
textarea.form-control {
  resize: vertical;
  min-height: calc(1.5em + 1.225rem + 2px);
}
.form-select {
  width: 100%;
  padding: .625rem 3rem .625rem 1rem;
  border: 0.0625rem solid rgba(44, 24, 16, 0.1);
  border-radius: .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--espresso);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235C3D2E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  appearance: none;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  cursor: pointer;
}
.form-select:focus {
  border-color: rgba(200, 149, 108, 0.4);
  box-shadow: 0 0 1rem 0 rgba(200, 149, 108, 0.2);
  outline: 0;
}
.form-text {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(194, 91, 91, 0.08);
  border-radius: .5rem;
}
.form-check-input {
  width: 1.125em;
  height: 1.125em;
  border: 0.0625rem solid rgba(44, 24, 16, 0.1);
  border-radius: .1875rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.form-check-input:checked {
  background-color: var(--caramel);
  border-color: var(--caramel);
}

/* ─── PAGE CONTAINERS ─── */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 3rem 4rem;
}
.page-container-narrow {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.page-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 3rem 4rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}
.page-title h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-title h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
}
.page-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.page-error {
  text-align: center;
  padding: 10rem 2rem;
  color: var(--text-muted);
}

/* ─── PRODUCT DETAIL ─── */
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.pd-back:hover { color: var(--espresso); }

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Image */
.pd-image-wrap {
  position: relative;
}
.pd-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 12px 48px rgba(44, 24, 16, 0.12), 0 4px 16px rgba(44, 24, 16, 0.06);
}
.pd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-tag {
  display: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cocoa);
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.1);
}
.pd-tag.visible { display: inline-block; }
.product-emoji-lg { font-size: 6rem; }

/* Info */
.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.pd-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cocoa);
  margin-bottom: 1.5rem;
}
.pd-price .price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.5rem;
}
.pd-desc {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Meta grid */
.pd-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.pd-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.pd-meta-item:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
}
.pd-meta-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.pd-meta-icon img {
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
}
.pd-meta-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.pd-meta-value {
  display: block;
  font-size: 0.9rem;
  color: var(--espresso);
  line-height: 1.4;
}

/* Quantity + Add to cart */
.pd-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.pd-qty {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: 0;
  border: 1px solid rgba(44, 24, 16, 0.12);
  overflow: hidden;
}
.pd-qty-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--espresso);
  cursor: pointer;
  transition: background 0.2s;
}
.pd-qty-btn:hover {
  background: rgba(200, 149, 108, 0.15);
}
.pd-qty-input {
  width: 3rem;
  text-align: center;
  border: none;
  background: transparent;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--espresso);
  outline: none;
  -moz-appearance: textfield;
}
.pd-qty-input::-webkit-inner-spin-button,
.pd-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.pd-add-btn {
  flex: 1;
  padding: 0.95rem 2rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pd-add-btn:hover {
  background: var(--cocoa);
}
.pd-add-btn:active {
  transform: translateY(0);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--mascarpone);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06), 0 1px 4px rgba(44, 24, 16, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.1), 0 2px 8px rgba(44, 24, 16, 0.06);
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.1), 0 2px 8px rgba(44, 24, 16, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(200, 149, 108, 0.06);
}

.faq-icon img { width: 34px; height: 34px; filter: sepia(0.4) saturate(0.8) hue-rotate(-10deg) brightness(0.75); }
.faq-icon img.icon-recolor {
  filter: sepia(1) saturate(0.8) hue-rotate(-10deg) brightness(0.65);
}
.faq-cta-icon img { width: 36px; height: 36px; filter: sepia(0.4) saturate(0.8) hue-rotate(-10deg) brightness(0.75); }
.faq-icon {
  font-size: 1.3rem;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  flex-shrink: 0;
  position: relative;
  margin-right: 0.5rem;
  padding-right: 0.5rem;
}
.faq-icon::after {
  content: '';
  position: absolute;
  right: -0.3rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(200, 149, 108, 0.25);
}

.faq-question span:nth-child(2) {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.4;
}

.faq-arrow {
  font-size: 1.4rem;
  color: var(--caramel);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem 0 4.9rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 4.9rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 2rem;
  background: var(--mascarpone);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.faq-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.faq-cta-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.faq-cta-btn:hover {
  background: var(--cocoa);
}

@media (max-width: 768px) {
  .faq-question { padding: 1rem 1.2rem; gap: 0.8rem; }
  .faq-question span:nth-child(2) { font-size: 0.95rem; }
  .faq-answer { padding-left: 1.2rem !important; }
  .faq-item.open .faq-answer { padding-left: 1.2rem; }
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--dark-chocolate);
  color: var(--ladyfinger);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo:hover { color: var(--caramel); }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; font-weight: 300; color: rgba(232, 213, 183, 0.7); }
.footer-guestbook-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--caramel);
  border-radius: 2px;
  color: var(--caramel);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-guestbook-btn:hover {
  background: var(--caramel);
  color: var(--espresso);
}
.footer-guestbook-icon { font-size: 0.9rem; }
footer.site-footer h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--caramel);
}
footer.site-footer ul { list-style: none; }
footer.site-footer li { margin-bottom: 0.6rem; }
footer.site-footer a {
  color: rgba(232, 213, 183, 0.7);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s;
}
footer.site-footer a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 213, 183, 0.1);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(232, 213, 183, 0.4);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copyright {
  text-align: center;
  margin: 0;
  flex: 1;
}

/* ── Footer social links (right) ── */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(232, 213, 183, 0.5);
  transition: background .2s, color .2s, transform .2s;
}
.footer-social-icon:hover {
  background: rgba(255,255,255,.14);
  color: var(--caramel);
  transform: translateY(-2px);
}
.footer-social-icon svg { width: 16px; height: 16px; }

/* ── Language flag buttons (left) ── */
.gt-lang-flags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gt-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  height: 30px;
  padding: 0 .5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.gt-lang-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.gt-lang-btn.active {
  border-color: var(--caramel);
  background: rgba(196, 149, 106, .12);
}
.gt-flag-img {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.gt-flag-label {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(232, 213, 183, 0.5);
  letter-spacing: .05em;
}
.gt-lang-btn.active .gt-flag-label {
  color: var(--caramel);
}

/* ── Footer bottom responsive ── */
@media (max-width: 640px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: .8rem;
  }
  .gt-lang-flags { order: 1; justify-content: center; }
  .footer-copyright { order: 2; flex: none; }
  .footer-social-links { order: 3; justify-content: center; }
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--espresso);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  z-index: 300;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(44, 24, 16, 0.3);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── DELIVERY ZONE MODAL ─── */
.dz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.5);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.dz-overlay.open { opacity: 1; visibility: visible; }
.dz-modal {
  background: var(--mascarpone);
  border-radius: 20px;
  overflow: hidden;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.dz-overlay.open .dz-modal { transform: translateY(0); }
.dz-map {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: var(--cream);
}
.dz-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: sepia(1) saturate(0.3) brightness(0.95) hue-rotate(-10deg);
}
.dz-content {
  padding: 2rem;
  text-align: center;
}
.dz-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}
.dz-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.dz-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.dz-input-wrap .ct-input {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.dz-check-btn {
  padding: 0 1.5rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.dz-check-btn:hover { background: var(--cocoa); }
.dz-result {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
}
.dz-result.dz-ok {
  background: rgba(74, 140, 92, 0.1);
  color: #4a8c5c;
}
.dz-result.dz-no {
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
}
.dz-result:empty { display: none; }
.dz-close-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.dz-close-btn:hover { background: var(--cocoa); }

/* ─── CHAT WIDGET ─── */
.chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  cursor: pointer;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.3);
  transition: all 0.3s;
}
.chat-bubble:hover { background: var(--cocoa); transform: scale(1.05); }
.chat-bubble-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--caramel);
  display: none;
}

.chat-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 360px;
  max-height: 500px;
  background: var(--mascarpone);
  border-radius: 8px;
  box-shadow: 0 10px 60px rgba(44, 24, 16, 0.2);
  z-index: 151;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-window.open { display: flex !important; }

/* Chat header */
.chat-header {
  padding: 1rem 1.2rem;
  background: var(--espresso);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
}
.chat-header-actions {
  display: flex;
  gap: .5rem;
}
.chat-minimize-btn,
.chat-close-btn {
  background: none;
  border: none;
  color: var(--ladyfinger);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 .3rem;
  line-height: 1;
  transition: color .2s;
}
.chat-minimize-btn:hover,
.chat-close-btn:hover { color: #fff; }

/* Chat messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  max-height: 320px;
  min-height: 200px;
}
.chat-message {
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
}
.chat-message.system {
  align-items: center;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}
.chat-message.customer { align-items: flex-end; }
.chat-message.admin { align-items: flex-start; }
.chat-message p {
  max-width: 80%;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.chat-message.customer p {
  background: var(--espresso);
  color: var(--cream);
  border-bottom-right-radius: 2px;
}
.chat-message.admin p {
  background: var(--cream);
  color: var(--espresso);
  border: 1px solid rgba(44,24,16,.08);
  border-bottom-left-radius: 2px;
}
.chat-time {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Chat input area — hidden by default, shown with .visible */
.chat-input-area {
  display: none;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  align-items: center;
}
.chat-input-area.visible { display: flex; }
.chat-input-area .form-control {
  flex: 1;
  border: none;
  border-radius: 0;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  background: transparent;
}
.chat-input-area .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}
.chat-send-btn {
  background: var(--caramel);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.chat-send-btn:hover { background: var(--cocoa); }

/* Guest form — hidden by default, shown with .visible */
.chat-guest-form {
  display: none;
  flex-direction: column;
  gap: .75rem;
  padding: 1.2rem;
}
.chat-guest-form.visible { display: flex; }
.chat-guest-form .form-control {
  padding: 0.6rem .875rem;
  font-size: 0.9rem;
}

/* ─── SHARED FORM ELEMENTS (ct- prefix) ─── */
select.ct-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235C3D2E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
}
.ct-textarea {
  resize: vertical;
  min-height: 120px;
}
.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ct-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ct-submit-btn:hover {
  background: var(--cocoa);
}
.ct-submit-btn:active { transform: translateY(0); }
.ct-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Animation */
@keyframes ctSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.ct-card-animate {
  opacity: 0;
  animation: ctSlideUp 0.6s ease forwards;
}

/* ─── CONTACT PAGE ─── */
.ct-layout {
  max-width: 900px;
  margin: 0 auto;
}
.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ct-card {
  background: var(--mascarpone);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06), 0 1px 4px rgba(44, 24, 16, 0.04);
  transition: all 0.3s ease;
}
.ct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.12), 0 2px 8px rgba(44, 24, 16, 0.06);
}
.ct-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  margin: 0 auto 1rem;
  color: var(--caramel);
}
.ct-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ct-card h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.ct-card-link {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
a.ct-card-link:hover { color: var(--caramel); }
.ct-card-hint {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--caramel);
  font-weight: 600;
}

.ct-form-wrap {
  background: var(--mascarpone);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08), 0 2px 8px rgba(44, 24, 16, 0.04);
}
.ct-form-header {
  margin-bottom: 2rem;
}
.ct-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
}
.ct-form-header h2 em {
  font-style: italic;
  color: var(--caramel);
}
.ct-form-wrap .form-group {
  margin-bottom: 1rem;
}
.ct-form-wrap .form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

/* ─── AUTH PAGES (split layout) ─── */
.auth-split {
  display: flex;
  min-height: 100vh;
}
.auth-split-form {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  overflow-y: auto;
}
.auth-form-inner {
  max-width: 480px;
  width: 100%;
}
.auth-form-inner .ct-input {
  background: #FAF6F1;
  border: 1px solid rgba(200, 149, 108, 0.25);
}
.auth-form-inner .ct-input:focus {
  background: #fff;
}
.auth-form-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--espresso);
}
.auth-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.5;
}
.auth-form-inner .form-group {
  margin-bottom: 1rem;
}
.auth-form-inner .form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.auth-split-media {
  flex: 1 1 50%;
  overflow: hidden;
  border-radius: 1.2rem;
  margin: 0.5rem;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
}
.auth-split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.auth-switch {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.auth-switch a,
.auth-link {
  color: var(--caramel);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s;
}
.auth-switch a:hover,
.auth-link:hover { color: var(--cocoa); }

.form-actions-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.form-actions-row .auth-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

/* ─── LEGAL PAGE ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.legal-card {
  background: var(--mascarpone);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06), 0 1px 4px rgba(44, 24, 16, 0.04);
}
.legal-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  color: var(--caramel);
}
.legal-card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 0;
}
.legal-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.04);
}
.legal-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.legal-section h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cocoa);
  margin-bottom: 0.6rem;
}

/* ─── TRACKING PAGE ─── */
.trk-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.trk-form-card {
  background: var(--mascarpone);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08), 0 2px 8px rgba(44, 24, 16, 0.04);
  margin-bottom: 2rem;
}
.trk-form-card .form-group {
  margin-bottom: 1rem;
}
.trk-form-card .form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.trk-result-card {
  background: var(--mascarpone);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
}
.trk-order-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}
.trk-order-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--espresso);
}
.trk-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(200, 149, 108, 0.12);
  color: var(--caramel);
}

.trk-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}
.trk-progress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  z-index: 0;
}
.trk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
  flex: 1;
}
.trk-step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}
.trk-step.active .trk-step-dot,
.trk-step.done .trk-step-dot {
  background: linear-gradient(135deg, var(--caramel) 0%, var(--cocoa) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 149, 108, 0.3);
}
.trk-step.active .trk-step-dot {
  animation: trkPulse 2s ease-in-out infinite;
}
@keyframes trkPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(200, 149, 108, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(200, 149, 108, 0.5); }
}
.trk-step-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}
.trk-step.active .trk-step-label,
.trk-step.done .trk-step-label { color: var(--espresso); }

.trk-details {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ─── LEGACY COMPAT ─── */
.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}
.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--cocoa);
  padding: 0.8rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  border-radius: 10px;
}
.btn-outline:hover {
  background: var(--cocoa);
  color: var(--cream);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235C3D2E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
}

/* ─── RESPONSIVE PAGES ─── */
@media (max-width: 768px) {
  .ct-cards { grid-template-columns: 1fr; }
  .ct-form-grid { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 1.5rem; border-radius: 16px; }
  .auth-split-media { display: none; }
  .auth-split-form { flex: 1 1 100%; padding: 2rem 1.5rem; }
  .legal-card { padding: 1.5rem; }
  .trk-form-card { padding: 1.5rem; }
  .trk-step-label { font-size: 0.7rem; }
  .trk-step-dot { width: 32px; height: 32px; }
}

/* ─── ORDER STATUS BADGES ─── */
.status-badge {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.status-pending_payment { background: #FFF3CD; color: #856404; }
.status-confirmed { background: #D4EDDA; color: #155724; }
.status-preparing { background: #D1ECF1; color: #0C5460; }
.status-ready { background: #CCE5FF; color: #004085; }
.status-en_route { background: #E2D6F3; color: #563D7C; }
.status-delivered { background: #D4EDDA; color: #155724; }
.status-cancelled { background: #F8D7DA; color: #721C24; }
.status-refunded { background: #F8D7DA; color: #721C24; }

/* ─── LOADING ─── */
.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 3rem;
}
.loading-spinner::after {
  content: '';
  width: 32px;
  height: 32px;
  border: 3px solid var(--ladyfinger);
  border-top-color: var(--caramel);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ─── CATEGORY FILTER ─── */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0.5rem;
  background: var(--cream);
  border-radius: 50px;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}
.page-container-wide > .category-filter {
  display: flex;
  justify-content: center;
}
.filter-btn,
.category-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: none;
  background: transparent;
  color: var(--cocoa);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
}
.filter-btn:hover,
.category-btn:hover {
  background: rgba(44, 24, 16, 0.08);
  color: var(--espresso);
}
.filter-btn.active,
.category-btn.active {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 4px 15px rgba(44, 24, 16, 0.25);
}

/* Product card images */
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-img {
  overflow: hidden;
}

/* Product detail image */
.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* (order styles moved to .ord-* and .odl-* sections below) */

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(200, 149, 108, 0.1); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 1024px) {
  nav#navbar { padding: 1rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .hero { padding: 3rem 2rem 3rem; }
  .scroll-hint { display: none; }
  .hero-content { padding-bottom: 0; }
  .products-section,
  .testimonials-section { padding: 5rem 2rem; }
  .how-it-works { padding: 5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-container { padding: 2.5rem 2rem 3rem; }
  .page-container-wide { padding: 2.5rem 2rem 3rem; }
  .pd-layout { gap: 2.5rem; }
  .steps { gap: 1.5rem; }
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 768px) {
  nav#navbar {
    padding: 1rem 1.5rem;
    flex-wrap: nowrap;
  }
  .nav-links { display: none; }
  .mobile-menu-btn {
    display: flex;
    order: -1;
    margin-right: 0.5rem;
  }
  .logo {
    order: 0;
    flex: 1;
    justify-content: flex-start;
  }
  .logo-img { display: block; width: 32px; height: 32px; }
  .logo em { display: none; }
  .logo span { display: none; }
  .nav-right {
    gap: 0.6rem;
    order: 1;
  }

  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .scroll-hint { display: none; }

  .steps { flex-direction: column; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .products-section,
  .testimonials-section { padding: 4rem 1.5rem; }
  .how-it-works { padding: 4rem 1.5rem; }

  .page-container { padding: 2rem 1.5rem 3rem; }
  .page-container-narrow { padding: 2rem 1.5rem 3rem; }

  .pd-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pd-image { aspect-ratio: 4/3; }
  .pd-title { font-size: 2rem; }
  .pd-price { font-size: 1.6rem; }
  .pd-meta { grid-template-columns: 1fr; }
  .pd-actions { flex-direction: column; }
  .pd-qty { align-self: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .chat-bubble {
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    z-index: 10000;
  }
  .chat-window {
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    z-index: 10001;
  }

  .tracking-step-label { font-size: 0.5rem; }

  .order-card { flex-direction: column; text-align: center; gap: 1rem; }
  .order-card-right { text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-marquee-track { gap: 1rem; }
  .testimonial { min-width: 280px; max-width: 320px; padding: 2rem; }
  .category-filter { gap: 0.4rem; padding: 0.4rem; border-radius: 30px; }
  .filter-btn,
  .category-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
}

/* ─── ABOUT PAGE ─── */
.about-content {
  max-width: 850px;
  margin: 0 auto;
}
.about-section {
  margin-bottom: 4rem;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about-text p {
  font-size: 1.25rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Flavors list */
.flavors-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.flavor-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--mascarpone);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.04);
}
.flavor-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}
.flavor-item.flavor-special {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 100%);
}
.flavor-dot {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(44, 24, 16, 0.15);
  transition: transform 0.3s ease;
}
.flavor-item:hover .flavor-dot {
  transform: scale(1.12);
}
.flavor-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.flavor-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: sepia(0.3) saturate(0.8) brightness(0.85);
}
.flavor-item:hover .flavor-icon {
  transform: scale(1.12);
}
.flavor-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.15rem;
}
.flavor-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: 4px;
}
.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.value-icon img {
  filter: sepia(0.3) saturate(0.8) brightness(0.85);
}
.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Name Origin */
.about-brand-name {
  text-transform: lowercase !important;
  font-style: italic;
}
.about-brand-g {
  color: var(--caramel);
  font-weight: 800;
  font-size: 1.15em;
}
.about-name-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.08), rgba(92, 61, 46, 0.06));
  border-radius: 16px;
  border: 1px solid rgba(200, 149, 108, 0.2);
  flex-wrap: wrap;
}
.about-name-letter {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--caramel);
  line-height: 1;
}
.about-name-eq,
.about-name-plus {
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 300;
}
.about-name-word {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--espresso);
}
.about-name-pron {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cocoa);
  font-weight: 600;
}

/* About CTA */
.about-cta {
  text-align: center;
  padding: 3rem 0;
  margin-top: 2rem;
}
.about-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-text h2 { font-size: 1.8rem; }
  .about-text p { font-size: 1.1rem; line-height: 1.8; }
  .flavor-item { flex-direction: column; gap: 0.3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .about-cta p { font-size: 1.4rem; }
}

/* ─── CART PAGE ─── */
.crt-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--mascarpone);
  border-radius: 16px;
  box-shadow: 0 2px 20px var(--soft-shadow);
}
.crt-empty svg { margin-bottom: 1.5rem; }
.crt-empty p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.crt-browse-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
}
.crt-browse-btn:hover {
  background: var(--cocoa);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 24, 16, 0.2);
}

.crt-summary {
  background: var(--mascarpone);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 2px 20px var(--soft-shadow);
}
.crt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  font-size: 1.05rem;
  color: var(--cocoa);
  border-bottom: 1px solid rgba(44, 24, 16, 0.05);
}
.crt-row:last-of-type { border-bottom: none; }
.crt-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--espresso);
  padding: 1.2rem 0 0.5rem;
  border-top: 2px solid rgba(44, 24, 16, 0.1);
  border-bottom: none;
  margin-top: 0.5rem;
}
.crt-promo-row {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.crt-promo-group {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}
.crt-promo-group .ct-input {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}
.crt-promo-btn {
  padding: 0.5rem 1.2rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.crt-promo-btn:hover { background: var(--cocoa); }
.crt-promo-discount {
  color: var(--success);
  font-weight: 600;
}
.crt-summary .ct-submit-btn {
  margin-top: 1.5rem;
}

/* Cart item rows (JS-rendered) */
.cart-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--mascarpone);
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px var(--soft-shadow);
  transition: all 0.3s ease;
}
.cart-item:hover {
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.cart-item-price {
  font-size: 0.95rem;
  color: var(--cocoa);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(44, 24, 16, 0.15);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--espresso);
  transition: all 0.2s;
}
.cart-item-qty-btn:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.cart-item-qty {
  min-width: 28px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.cart-item-remove {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  margin-left: 0.5rem;
}
.cart-item-remove:hover {
  background: rgba(194, 91, 91, 0.1);
}

/* ─── MY ORDERS ─── */
.ord-list { list-style: none; }
.ord-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--mascarpone);
  border-radius: 16px;
  box-shadow: 0 2px 20px var(--soft-shadow);
}
.ord-empty svg { margin-bottom: 1.5rem; }
.ord-empty p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.ord-card {
  background: var(--mascarpone);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px var(--soft-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
}
.ord-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(44, 24, 16, 0.12);
}
.ord-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}
.ord-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--espresso);
}
.ord-card-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* Order mini timeline */
.ord-timeline {
  margin-bottom: 1rem;
  padding: 0.6rem 0;
  position: relative;
}
.ord-tl-track {
  height: 3px;
  background: rgba(44, 24, 16, 0.08);
  border-radius: 3px;
  position: relative;
  margin: 0 0.5rem;
}
.ord-tl-progress {
  height: 100%;
  background: var(--caramel);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.ord-tl-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -6.5px;
  padding: 0 0.1rem;
}
.ord-tl-dot-circle {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(44, 24, 16, 0.15);
  transition: all 0.3s;
}
.ord-tl-dot.completed .ord-tl-dot-circle {
  background: var(--caramel);
  border-color: var(--caramel);
}
.ord-tl-dot.active .ord-tl-dot-circle {
  background: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.25);
}
.ord-tl-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.ord-tl-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.03em;
  color: rgba(44, 24, 16, 0.3);
  text-align: center;
  flex: 1;
  transition: color 0.3s;
}
.ord-tl-label.active {
  color: var(--cocoa);
  font-weight: 600;
}
.ord-timeline-cancelled {
  text-align: center;
  padding: 0.4rem 0;
}
.ord-tl-cancelled-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--danger);
  font-weight: 700;
}
@media (max-width: 480px) {
  .ord-tl-labels { display: none; }
}

.ord-card-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ord-card-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  background: var(--cream);
  border-radius: 10px;
}
.ord-card-item-img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.ord-card-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ord-card-item-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ord-card-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--espresso);
}
.ord-card-item-qty {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--mascarpone);
  background: var(--cocoa);
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
}
.ord-card-item-link {
  cursor: pointer;
  transition: all 0.2s ease;
}
.ord-card-item-link:hover {
  background: rgba(200, 149, 108, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
}
.ord-card-item-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s;
}
.ord-card-item-link:hover .ord-card-item-arrow {
  transform: translateX(2px);
  color: var(--caramel);
}
.ord-card-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.ord-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
}
.ord-card-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cocoa);
}
.ord-card-arrow {
  color: var(--caramel);
  opacity: 0.5;
  transition: all 0.3s;
}
.ord-card:hover .ord-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.ord-card-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  background: var(--cream);
  color: var(--cocoa);
  white-space: nowrap;
}
.ord-card-status.status-confirmed {
  background: rgba(74, 140, 92, 0.12);
  color: var(--success);
}
.ord-card-status.status-delivered {
  background: rgba(74, 140, 92, 0.12);
  color: var(--success);
}
.ord-card-status.status-en_route {
  background: rgba(91, 142, 194, 0.12);
  color: var(--info);
}
.ord-card-status.status-preparing,
.ord-card-status.status-ready {
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
}
.ord-card-status.status-pending_payment {
  background: rgba(234, 179, 8, 0.1);
  color: #ca8a04;
}
.ord-card-status.status-cancelled,
.ord-card-status.status-refunded {
  background: rgba(200, 60, 60, 0.1);
  color: var(--danger);
}

/* ─── ORDER DETAIL ─── */
.odl-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-bottom: 2rem;
  transition: color 0.3s;
  cursor: pointer;
}
.odl-back:hover { color: var(--espresso); }
.odl-back svg { transition: transform 0.3s; }
.odl-back:hover svg { transform: translateX(-3px); }

.odl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.odl-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}
.odl-status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  background: var(--cream);
  color: var(--cocoa);
  font-weight: 600;
}

/* Order progress steps */
/* ── Vertical Timeline ── */
.odl-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.odl-tl-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.8rem;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.odl-tl-step:last-child { padding-bottom: 0; }
/* Connector line between dots — starts below one dot, ends above the next */
.odl-tl-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 52px;
  bottom: 4px;
  width: 2px;
  background: rgba(44, 24, 16, 0.1);
  z-index: 0;
}
.odl-tl-step.completed:not(:last-child)::before {
  background: var(--espresso);
}
.odl-tl-step.active:not(:last-child)::before {
  background: rgba(44, 24, 16, 0.1);
}
.odl-tl-step.completed,
.odl-tl-step.active { opacity: 1; }

.odl-tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(44, 24, 16, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  margin-left: -39px;
}
.odl-tl-dot img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  /* Inactive: low opacity */
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.odl-tl-step.completed .odl-tl-dot {
  background: rgba(44, 24, 16, 0.06);
  border-color: var(--espresso);
  box-shadow: 0 0 0 3px rgba(44, 24, 16, 0.06);
}
.odl-tl-step.completed .odl-tl-dot img {
  opacity: 1;
}
.odl-tl-step.active .odl-tl-dot {
  background: rgba(200, 149, 108, 0.1);
  border-color: var(--caramel);
  box-shadow: 0 0 0 6px rgba(200, 149, 108, 0.15), 0 0 16px rgba(200, 149, 108, 0.1);
  animation: pulse 2s infinite;
}
.odl-tl-step.active .odl-tl-dot img {
  opacity: 1;
}

.odl-tl-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.3rem;
}
.odl-tl-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.odl-tl-step.completed .odl-tl-title,
.odl-tl-step.active .odl-tl-title {
  color: var(--espresso);
}
.odl-tl-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.odl-tl-step.active .odl-tl-desc {
  color: var(--cocoa);
}
.odl-tl-time {
  font-size: 0.75rem;
  color: var(--caramel);
  font-weight: 600;
  margin-top: 0.15rem;
}
.odl-tl-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.1rem;
}

/* Order detail grid: items left, delivery+total right */
.odl-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.odl-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.odl-right-col .odl-card {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .odl-top-grid { grid-template-columns: 1fr; }
}

/* Order detail cards */
.odl-card {
  background: var(--mascarpone);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px var(--soft-shadow);
}
.odl-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}
.odl-delivery-details p {
  font-size: 1rem;
  color: var(--cocoa);
  line-height: 1.8;
}

/* Order items in detail */
.odl-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.05);
}
.odl-item:last-child { border-bottom: none; }
.odl-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.odl-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.odl-item-info { flex: 1; }
.odl-item-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
}
.odl-item-qty {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.odl-item-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(44, 24, 16, 0.12);
  border-radius: 0;
  overflow: hidden;
  margin-top: 0.3rem;
}
.odl-qty-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: var(--espresso);
  cursor: pointer;
  transition: background 0.2s;
}
.odl-qty-btn:hover {
  background: rgba(200, 149, 108, 0.15);
}
.odl-qty-val {
  width: 2rem;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--espresso);
  border-left: 1px solid rgba(44, 24, 16, 0.12);
  border-right: 1px solid rgba(44, 24, 16, 0.12);
  line-height: 2rem;
}
.odl-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--cocoa);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.odl-item-link {
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border-radius: 10px;
  padding: 1rem;
  margin: 0 -1rem;
}
.odl-item-link:hover {
  background: rgba(200, 149, 108, 0.08);
  transform: translateX(4px);
}
.odl-item-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.odl-item-link:hover .odl-item-arrow {
  transform: translateX(3px);
  color: var(--caramel);
}

/* Order totals */
.odl-totals { padding: 1.5rem 2rem; }
.odl-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--cocoa);
}
.odl-discount-row { color: var(--success); }
.odl-grand-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--espresso);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(44, 24, 16, 0.1);
}

@media (max-width: 768px) {
  .crt-promo-group { min-width: 100%; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-actions { margin-left: auto; }
  .ord-card-header { flex-direction: column; gap: 0.5rem; }
  .ord-card-footer { flex-direction: row; }
  .odl-header { flex-direction: column; }
  .odl-number { font-size: 1.5rem; }
  .odl-step-label { font-size: 0.7rem; }
  .odl-item { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════
   COFFRETS PAGE
   ═══════════════════════════════════════════ */
.coffrets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.coffret-card {
  background: var(--cream, #FFF9F3);
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(200, 149, 108, 0.15);
}
.coffret-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.1);
}
.coffret-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.coffret-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.coffret-card:hover .coffret-card-img img {
  transform: scale(1.05);
}
.coffret-card-content {
  padding: 1.5rem;
}
.coffret-card-content h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--dark-brown, #2C1810);
}
.coffret-card-content p {
  font-size: 0.95rem;
  color: var(--text-secondary, #6B5A4E);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.coffret-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--caramel, #C8956C);
  transition: color 0.2s;
}
.coffret-card:hover .coffret-card-cta {
  color: var(--dark-brown, #2C1810);
}
