/* ============================================
   PATTAYA WHISKEY - Premium Spirits Delivery
   Color Theme: White Primary + Amber/Orange Accent
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #E8960C;
  --orange-dark: #C07A08;
  --orange-light: #F0A832;
  --orange-glow: rgba(232, 150, 12, 0.25);
  --orange-bg: rgba(232, 150, 12, 0.08);
  --white: #FFFFFF;
  --off-white: #FDFBF7;
  --cream: #FFF9F0;
  --light-gray: #F5F1EC;
  --dark: #1A0E04;
  --dark-warm: #2A1A0A;
  --brown: #3C1E08;
  --brown-medium: #5A3A1E;
  --text-primary: #2C1810;
  --text-secondary: #6B5440;
  --text-muted: #9A8470;
  --border: rgba(60, 30, 8, 0.08);
  --border-hover: rgba(232, 150, 12, 0.3);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(60, 30, 8, 0.08);
  --shadow-lg: 0 12px 48px rgba(60, 30, 8, 0.12);
  --shadow-orange: 0 8px 30px rgba(232, 150, 12, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Logo */
.nav-logo-img { height: 64px; width: auto; }
.footer-logo-img { height: 72px; width: auto; }
.age-gate-logo { height: 100px; width: auto; margin: 0 auto 24px; display: block; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── UTILITIES ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition); position: relative; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
.nav-cart {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--light-gray);
  transition: var(--transition); color: var(--text-secondary);
}
.nav-cart:hover { background: var(--orange); color: white; }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--orange); color: white;
  font-size: 0.65rem; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  opacity: 0; transform: scale(0.5); transition: var(--transition);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.nav-order-btn {
  padding: 10px 24px; background: var(--orange); color: white;
  border-radius: 50px; font-weight: 600; font-size: 0.85rem;
  transition: var(--transition); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-order-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav-toggle span { display: block; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,150,12,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,150,12,0.04) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--off-white), transparent);
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-top: 72px;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--orange-bg);
  border: 1px solid rgba(232,150,12,0.2); border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--orange-dark);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge .material-symbols-outlined { font-size: 16px; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.02em; color: var(--brown);
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 36px;
  max-width: 480px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; transition: var(--transition);
  letter-spacing: 0.02em; text-transform: uppercase;
}
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-visual {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-image-wrapper {
  position: relative; width: 420px; height: 520px;
}
.hero-image-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-wrapper::before {
  content: ''; position: absolute; inset: -3px;
  background: linear-gradient(135deg, var(--orange), transparent 50%);
  border-radius: calc(var(--radius-lg) + 3px); z-index: -1;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat h3 {
  font-family: var(--font-display); font-size: 2rem; color: var(--orange);
  font-weight: 700;
}
.hero-stat p { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Floating badge on hero */
.hero-float {
  position: absolute; background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero-float.top-right { top: 40px; right: -20px; }
.hero-float.bottom-left { bottom: 60px; left: -30px; animation-delay: -3s; }
.hero-float .material-symbols-outlined { font-size: 28px; color: var(--orange); }
.hero-float-text span { display: block; font-size: 0.75rem; color: var(--text-muted); }
.hero-float-text strong { font-size: 0.95rem; color: var(--text-primary); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── FEATURES BAR ── */
.features-bar {
  position: relative; z-index: 3; margin-top: -50px;
  padding: 0 24px;
}
.features-bar .container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  box-shadow: var(--shadow-lg);
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 8px 0;
}
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--orange-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.feature-icon .material-symbols-outlined { font-size: 24px; }
.feature-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
.feature-text p { font-size: 0.78rem; color: var(--text-muted); }

/* ── SECTION COMMON ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--brown);
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted); margin-top: 12px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ── CATEGORY CARDS (Homepage) ── */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.category-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1; cursor: pointer;
  background: var(--cream);
  border: 1px solid rgba(232, 150, 12, 0.15);
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  box-shadow: 0 2px 8px rgba(60, 30, 8, 0.06);
}
.category-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
  background: var(--white);
}
.category-card .material-symbols-outlined {
  font-size: 36px; color: var(--orange);
  transition: var(--transition);
}
.category-card:hover .material-symbols-outlined { transform: scale(1.15); }
.category-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.category-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ── PRODUCT GRID ── */
.products-section { background: var(--off-white); }
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.products-count { font-size: 0.9rem; color: var(--text-muted); }
.products-sort select {
  background: var(--white); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 16px; font-size: 0.85rem; font-family: var(--font-body);
}

/* Category filter tabs */
.filter-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
  margin-bottom: 32px; scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 50px; font-size: 0.82rem;
  font-weight: 500; white-space: nowrap;
  background: var(--white); color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.filter-tab:hover { color: var(--orange); border-color: var(--orange); }
.filter-tab.active {
  background: var(--orange); color: white;
  border-color: var(--orange); box-shadow: 0 4px 16px var(--orange-glow);
}
.filter-tab .material-symbols-outlined { font-size: 18px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--light-gray);
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--orange); color: white;
}
.product-badge.gold { background: var(--brown); color: white; }

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category-label {
  font-size: 0.72rem; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 6px; line-height: 1.3; color: var(--brown);
}
.product-volume { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.product-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary);
}
.product-price .currency { font-size: 0.85rem; color: var(--text-muted); margin-left: 2px; }
.add-to-cart-btn {
  width: 42px; height: 42px;
  background: var(--orange); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--orange-dark); transform: scale(1.1); box-shadow: 0 4px 16px var(--orange-glow); }
.add-to-cart-btn .material-symbols-outlined { font-size: 20px; }

/* ── ABOUT / WHY US ── */
.about-section { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,14,4,0.3), transparent);
}
.about-content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 20px; line-height: 1.2; color: var(--brown);
}
.about-content h2 .accent { color: var(--orange); }
.about-content > p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex; gap: 16px; padding: 16px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-feature .material-symbols-outlined { font-size: 28px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.about-feature h4 { font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  text-align: center; padding: 40px 24px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.step-number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--orange); opacity: 0.2; margin-bottom: 16px;
}
.step-card .material-symbols-outlined { font-size: 40px; color: var(--orange); margin-bottom: 16px; }
.step-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 12px; position: relative; color: white;
}
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-white {
  background: white; color: var(--brown);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-weight: 700;
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ── CONTACT PAGE ── */
.contact-section { padding-top: 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex; gap: 16px; padding: 24px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.contact-card .material-symbols-outlined { font-size: 28px; color: var(--orange); flex-shrink: 0; }
.contact-card h4 { font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.contact-card p { font-size: 0.9rem; color: var(--text-muted); }
.contact-card a { color: var(--orange); transition: var(--transition); }
.contact-card a:hover { color: var(--orange-dark); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 24px; color: var(--brown);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--off-white); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font-body);
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,150,12,0.12);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Social links */
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--light-gray); border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition); color: var(--text-muted);
}
.social-link:hover { background: var(--orange); color: white; border-color: var(--orange); }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

/* ── FOOTER ── */
.footer {
  background: var(--brown);
  border-top: none;
  padding: 64px 0 24px;
  color: white;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 16px; line-height: 1.7; max-width: 300px; }
.footer h4 {
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--orange-light); margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer ul a:hover { color: var(--orange-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange-light); }

/* Footer logo invert for dark bg */
.footer .nav-logo-img { filter: brightness(10); }

/* Footer social on dark */
.footer .social-links .social-link {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.footer .social-links .social-link:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ── AGE GATE MODAL ── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,14,4,0.92); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px; text-align: center;
  max-width: 440px; width: 100%;
}
.age-gate-box h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 12px; color: var(--brown);
}
.age-gate-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; }
.age-gate-actions .btn { min-width: 120px; justify-content: center; }
.age-gate-actions .btn-outline { border-color: var(--border); color: var(--text-secondary); }
.age-gate-actions .btn-outline:hover { border-color: #d32f2f; color: #d32f2f; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; z-index: 2001;
  width: 400px; max-width: 90vw;
  background: var(--white); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--brown); }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.cart-close:hover { background: var(--light-gray); color: var(--text-primary); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty .material-symbols-outlined { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0; background: var(--light-gray);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; color: var(--text-primary); }
.cart-item-price { font-size: 0.85rem; color: var(--orange); font-weight: 600; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-gray); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.qty-btn:hover { background: var(--orange); color: white; }
.qty-value { font-size: 0.9rem; min-width: 24px; text-align: center; color: var(--text-primary); }
.cart-item-remove {
  color: var(--text-muted); transition: var(--transition); align-self: flex-start;
}
.cart-item-remove:hover { color: #d32f2f; }
.cart-footer {
  padding: 24px; border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; margin-bottom: 8px;
}
.cart-total span { color: var(--text-muted); }
.cart-total strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-primary); }
.cart-delivery-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.cart-delivery-note.free { color: #2e7d32; }
.cart-checkout { width: 100%; justify-content: center; }

/* ── PAGE HEADER (shop, contacts, privacy) ── */
.page-header {
  padding: 140px 0 60px; text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,150,12,0.08) 0%, transparent 60%);
}
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; position: relative; color: var(--brown);
}
.page-header p { color: var(--text-muted); margin-top: 12px; position: relative; }

/* ── PRIVACY PAGE ── */
.privacy-content {
  max-width: 800px; margin: 0 auto; padding: 60px 24px 100px;
}
.privacy-content h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  margin-top: 40px; margin-bottom: 16px; color: var(--orange);
}
.privacy-content p {
  color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7;
}
.privacy-content ul { padding-left: 20px; margin-bottom: 16px; }
.privacy-content ul li {
  color: var(--text-secondary); margin-bottom: 8px; list-style: disc;
  line-height: 1.6;
}
.privacy-content a { color: var(--orange); text-decoration: underline; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--orange-glow);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .features-bar .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .features-bar .container { grid-template-columns: 1fr; padding: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .btn { padding: 12px 24px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
