/* =========================================
   HONEY'S ALT - FINAL UNIFIED STYLE
   Original Colors + Premium Glass Layout + ORIGINAL FONTS
   ========================================= */

/* --- 1. RESET & VARIABLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Natural Dark Base */
  --bg-main: #09090b; 
  --bg-panel: #121212;
  
  /* Original Amber Palette */
  --amber-400: #fbbf24;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  
  /* Glass Effects */
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(251, 191, 36, 0.25);
  --glow-soft: rgba(251, 191, 36, 0.1);

  /* Typography - REVERTED TO YOUR ORIGINAL FONTS */
  --text-primary: #ffffff;
  --text-muted: #d1d5db;
  --font-heading: 'Playfair Display', serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-subtitle: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: url("bee-cursor.png") 16 16, auto;
}

/* Touch Safety */
a, button, input, textarea, select { 
  cursor: url("bee-cursor.png") 16 16, pointer; 
  touch-action: manipulation; 
  -webkit-tap-highlight-color: transparent; 
}
@media (hover: none) { * { cursor: auto; } }
a { text-decoration: none; }
.hidden { display: none !important; }

/* =========================================
   2. FLOATING PILL NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%);
  width: 95%; max-width: 1200px; z-index: 1000; height: 4.5rem;
  border-radius: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
  opacity: 0;
  animation: navFadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#brand-intro ~ .navbar { animation-delay: 3.2s; }

.navbar-container { padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 100%; }
.navbar-brand { display: flex; align-items: center; gap: 0.8rem; }
.navbar-brand:hover { opacity: 0.8; }
.brand-logo { width: 45px; height: 45px; object-fit: contain; transition: 0.3s; }
.brand-text {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(to right, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.navbar-menu { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  color: var(--gray-300); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  background: none; border: none; transition: 0.3s; position: relative; font-family: var(--font-body);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px;
  background: linear-gradient(to right, var(--amber-400), var(--amber-600));
  transform: scaleX(0); transform-origin: left; transition: 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--amber-400); }

.game-link { border: 1px solid var(--glass-border); padding: 8px 16px; border-radius: 30px; background: rgba(251, 191, 36, 0.1); }
.game-link::after { display: none; }
.game-link:hover { background: rgba(251, 191, 36, 0.2); color: #fff; }

.nav-cart-btn {
  background: rgba(251, 191, 36, 0.1); border: 1px solid var(--glass-border); color: var(--amber-400);
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative; transition: 0.3s;
}
.nav-cart-btn:hover { background: var(--amber-400); color: #000; transform: scale(1.05); }
.cart-count {
  position: absolute; top: -4px; right: -4px; background: var(--amber-400); color: #000;
  font-size: 10px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; background: none; border: none; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background-color: var(--gray-300); transition: 0.3s; }
.menu-close-btn { display: none !important; }

/* =========================================
   3. HERO SECTION
   ======================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background-image: url("ChatGPT\ Image\ Feb\ 23\,\ 2026\,\ 09_41_14\ AM.png"); background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
.hero-content { 
  position: relative; z-index: 10; text-align: center; padding: 0 1rem; 
  display: flex; flex-direction: column; align-items: center; justify-content: center; 
  opacity: 0; 
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s; /* Changed from 3s to 0.5s */
}
.hero-title {
  font-family: var(--font-heading); font-size: 5rem; font-weight: 900; line-height: 1.1; margin-bottom: 0.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3e5ab 45%, #c5a059 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; -webkit-text-stroke: 0px; 
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3)); text-transform: capitalize;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-subtitle-wrap {
  display: inline-block; padding: 0.45rem 1.6rem; margin-top: 0.6rem; margin-bottom: 1.5rem;
  background: radial-gradient(circle at top left, rgba(240, 182, 72, 0.22), rgba(230, 51, 114, 1.0));
  backdrop-filter: blur(10px); border-radius: 999px; border: 1px solid rgba(240, 182, 72, 0.28);
}
.hero-subtitle { 
  font-family: var(--font-subtitle); color: white; font-size: 0.9rem; 
  letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; margin: 0;
}

.hero-btn, .final-order-btn {
  background-color: var(--amber-600); color: white;
  font-family: var(--font-body); font-weight: 600; padding: 1rem 3rem; border-radius: 50px; border: none;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: 0.3s; position: relative; overflow: hidden; cursor: pointer;
}
.hero-btn:hover, .final-order-btn:hover {
  background-color: var(--amber-700); transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(217, 119, 6, 0.3);
}
.scroll-indicator { position: absolute; bottom: 2rem; color: var(--amber-400); animation: bounce 2s infinite; z-index: 10; }

/* =========================================
   4. GLOWING GLASS DESSERT CARDS (PC VERSION)
   ========================================= */
.featured-desserts { 
  padding: 6rem 1rem; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("honey.png"); 
  background-size: cover; background-attachment: fixed; 
}
.menu-section { 
  padding: 10rem 1rem 5rem 1rem; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("Herooo.png"); 
  background-size: cover; background-position: top center; background-attachment: fixed; min-height: 100vh; margin-top: 0;
}
.featured-container { max-width: 1400px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; padding-left: 1rem; }
.section-title { font-family: var(--font-heading); font-size: 3rem; color: white; margin-bottom: 0.5rem; }
.section-subtitle { font-family: var(--font-body); color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.category-filters { 
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 3rem; padding-bottom: 20px; 
}
.category-btn {
  flex: 0 1 auto; margin: 0; white-space: nowrap; font-size: 0.9rem; padding: 8px 18px;
  background: var(--zinc-900); border: 1px solid rgba(217, 119, 6, 0.2); color: var(--gray-300);
  border-radius: 50px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; transition: 0.3s; cursor: pointer;
}
.category-btn:hover { background: rgba(217, 119, 6, 0.2); color: var(--amber-400); }
.category-btn.active { background-color: var(--amber-600); color: white; box-shadow: 0 0 15px rgba(217, 119, 6, 0.5); }

.desserts-grid, .menu-section .desserts-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: 280px; gap: 2.5rem;
  overflow-x: auto; padding: 2rem 1rem 3rem 1rem; scroll-behavior: smooth;
}
.desserts-grid::-webkit-scrollbar { height: 6px; }
.desserts-grid::-webkit-scrollbar-thumb { background: rgba(251, 191, 36, 0.3); border-radius: 10px; }

.dessert-card {
  position: relative; border-radius: 24px; background: rgba(20, 20, 20, 0.7); 
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(251, 191, 36, 0.15); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(251, 191, 36, 0.03);
  padding: 2.5rem 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: all 0.4s ease; transform-style: preserve-3d; perspective: 1000px;
}
.dessert-card:hover { border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(251, 191, 36, 0.15); }

.dessert-image {
  width: 160px; height: 160px; border-radius: 50%; border: 2px solid var(--amber-400); 
  padding: 6px; margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3), inset 0 0 15px rgba(251, 191, 36, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease; overflow: hidden; display: flex; align-items: center; justify-content: center; transform: translateZ(50px);
}
.dessert-card:hover .dessert-image { transform: scale(1.05); box-shadow: 0 0 35px rgba(251, 191, 36, 0.5), inset 0 0 20px rgba(251, 191, 36, 0.3); }
.dessert-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 0.5s ease; }

.dessert-info { width: 100%; padding: 0; transform: translateZ(30px); }
.dessert-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: white; margin-bottom: 0.3rem; }
.dessert-price { font-family: var(--font-body); font-size: 1.15rem; font-weight: 700; color: var(--amber-400); margin-bottom: 1.5rem; }

.dessert-card .add-to-cart-btn {
  width: 100%; background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-600) 100%);
  color: #000000; font-family: var(--font-body); font-weight: 700; padding: 0.85rem 1rem;
  border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}
.dessert-card .add-to-cart-btn:hover { background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-400) 100%); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5); }

/* =========================================
   5. THE VAULT (CONTAINMENT PILLARS - PC)
   ========================================= */
.vault-section {
  padding: 8rem 1rem; position: relative; background: linear-gradient(135deg, #170d01 0%, #050300 100%);
  border-top: 1px solid rgba(251, 191, 36, 0.2); border-bottom: 1px solid rgba(251, 191, 36, 0.2); overflow: hidden;
}
.vault-section::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2) 10px, rgba(251, 191, 36, 0.03) 10px, rgba(251, 191, 36, 0.03) 20px); pointer-events: none;
}
.vault-masterpiece {
  position: relative; width: 100%; max-width: 800px; height: 350px; margin: 0 auto; border-radius: 12px;
  background: radial-gradient(circle at center, #2a1600 0%, #000 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 0 2px rgba(251, 191, 36, 0.3); overflow: hidden; cursor: pointer;
}
.vault-door {
  position: absolute; top: 0; width: 50%; height: 100%; background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
  z-index: 10; display: flex; align-items: center; transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.left-door { left: 0; border-right: 2px solid var(--amber-400); box-shadow: inset -10px 0 20px rgba(0,0,0,0.8), 10px 0 30px rgba(0,0,0,0.5); justify-content: flex-end; }
.right-door { right: 0; background: linear-gradient(90deg, #1a1a1a 0%, #111 100%); border-left: 2px solid var(--amber-400); box-shadow: inset 10px 0 20px rgba(0,0,0,0.8), -10px 0 30px rgba(0,0,0,0.5); }
.door-texture { position: absolute; width: 100%; height: 100%; opacity: 0.1; background-image: repeating-linear-gradient(0deg, transparent, transparent 4px, #fff 4px, #fff 8px); pointer-events: none; }
.door-lock-bar { width: 20px; height: 150px; background: #000; border: 1px solid #333; z-index: 2; }
.left-door .door-lock-bar { border-radius: 10px 0 0 10px; border-right: none; margin-right: -2px; }
.right-door .door-lock-bar { border-radius: 0 10px 10px 0; border-left: none; margin-left: -2px; }
.center-lock {
  position: absolute; left: -25px; top: calc(50% - 25px); width: 50px; height: 50px;
  background: #000; border: 2px solid var(--amber-400); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 15; box-shadow: 0 0 20px rgba(251, 191, 36, 0.5); transition: opacity 0.2s, transform 0.2s;
}
.vault-masterpiece:hover .left-door, .vault-masterpiece:active .left-door { transform: translateX(-100%); }
.vault-masterpiece:hover .right-door, .vault-masterpiece:active .right-door { transform: translateX(100%); }
.vault-masterpiece:hover .center-lock, .vault-masterpiece:active .center-lock { opacity: 0; transform: scale(0); transition: 0.2s; }

.vault-core-reveal {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  z-index: 5; opacity: 0; transform: scale(0.9); transition: all 1s ease 0.2s; padding: 1.5rem;
}
.vault-masterpiece:hover .vault-core-reveal, .vault-masterpiece:active .vault-core-reveal { opacity: 1; transform: scale(1); }
.containment-grid { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; gap: 15px; width: 100%; height: 100%; }

.mystery-card {
  width: calc(33.33% - 20px); max-width: 240px; height: 160px; background: #090602; border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.1); display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: 0.3s; position: relative; overflow: hidden;
}
.mystery-card:hover { border-color: rgba(251, 191, 36, 0.4); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(217, 119, 6, 0.15); }
.mystery-image {
  width: 60px; height: 60px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(251, 191, 36, 0.3);
  margin-bottom: 12px; z-index: 2; box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mystery-card:hover .mystery-image { transform: scale(1.15); border-color: rgba(251, 191, 36, 0.8); box-shadow: 0 0 25px rgba(251, 191, 36, 0.5); }
.mystery-title { color: #fff; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; text-align: center; z-index: 2; white-space: nowrap; }
.mystery-badge {
  display: flex; align-items: center; gap: 8px; background: transparent; border: 1px solid rgba(251, 191, 36, 0.3); 
  color: #fbbf24; padding: 4px 12px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--font-body); z-index: 2; white-space: nowrap;
}
.badge-dot { width: 6px; height: 6px; background: #8b6b22; border-radius: 50%; }

/* =========================================
   6. ABOUT SECTION & FOOTER
   ========================================= */
.about { padding: 6rem 2rem; background: linear-gradient(180deg, #1c1917 0%, #050505 100%); border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.about-content { max-width: 800px; margin: 0 auto; color: var(--gray-300); font-size: 1.1rem; line-height: 1.8; font-family: var(--font-body); }
.highlight { color: var(--amber-400); font-weight: 600; }
.tagline { display: block; margin-top: 2rem; font-family: var(--font-heading); color: var(--amber-400); font-size: 1.5rem; }

.footer { background: var(--zinc-950); padding: 5rem 2rem 2rem; border-top: 1px solid rgba(217, 119, 6, 0.2); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand { font-family: var(--font-heading); font-size: 1.8rem; background: linear-gradient(to right, var(--amber-400), var(--amber-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
.footer-title { font-family: var(--font-body); color: white; font-weight: 600; margin-bottom: 1rem; }
.footer-link { font-family: var(--font-body); color: var(--gray-400); display: flex; align-items: center; gap: 0.5rem; transition: 0.3s; margin-bottom: 0.8rem; }
.footer-link:hover { color: var(--amber-400); transform: translateX(5px); }
.footer-bottom { font-family: var(--font-body); border-top: 1px solid rgba(217, 119, 6, 0.2); padding-top: 2rem; text-align: center; color: var(--gray-500); font-size: 0.875rem; }

/* =========================================
   7. CART SYSTEM & CHECKOUT MODAL
   ========================================= */
.cart-overlay, .checkout-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); z-index: 10000; opacity: 0; pointer-events: none; transition: 0.4s; }
.cart-overlay.show, .checkout-overlay.active { opacity: 1; pointer-events: auto; }
.checkout-overlay { z-index: 10005 !important; }

.cart-drawer {
  position: fixed; top: 0; right: 0; width: 450px; max-width: 90%; height: 100vh;
  background: linear-gradient(180deg, #101010 0%, #050505 100%); border-left: 1px solid var(--glass-border); box-shadow: -20px 0 50px rgba(0,0,0,0.9);
  transform: translateX(110%); transition: 0.4s; z-index: 10001; display: flex; flex-direction: column;
}
.cart-drawer.show { transform: translateX(0); }

.cart-header { padding: 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.cart-header h2 { font-family: var(--font-heading); color: var(--amber-400); font-size: 1.5rem; }
.cart-close { background: none; border: none; color: #888; font-size: 1.5rem; transition: 0.3s; cursor: pointer; }
.cart-close:hover { color: var(--amber-400); transform: rotate(90deg); }

.cart-items { flex: 1; padding: 1.5rem; overflow-y: auto; scrollbar-width: none; }
.cart-items::-webkit-scrollbar { display: none; }
.cart-item { display: flex; gap: 1rem; padding: 1rem; margin-bottom: 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 20px; transition: 0.3s; }
.cart-item:hover { border-color: var(--amber-400); box-shadow: 0 0 15px var(--glow-soft); }
.cart-item img { width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--amber-400); object-fit: cover; }
.cart-item-info strong { color: #fff; font-family: var(--font-heading); font-size: 1.1rem; }
.cart-item-info div { color: var(--amber-400); font-weight: 700; margin-top: 4px; font-family: var(--font-body); }
.cart-qty { background: rgba(0,0,0,0.3); padding: 5px 12px; border-radius: 30px; margin-top: 8px; display: flex; gap: 12px; width: fit-content; color: #fff; }
.cart-qty button { background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer; font-family: var(--font-body); }
.cart-qty button:hover { color: var(--amber-400); }
.cart-remove { background: none; border: none; color: #555; margin-left: auto; transition: 0.3s; cursor: pointer; }
.cart-remove:hover { color: #ef4444; }

.cart-footer { padding: 2rem; background: rgba(20,20,20,0.8); border-top: 1px solid rgba(255,255,255,0.08); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 1.5rem; align-items: center; }
.cart-total span:first-child { text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); font-size: 0.9rem; font-weight: 600; font-family: var(--font-body); }
.cart-total span:last-child { font-family: var(--font-heading); font-size: 1.8rem; color: white; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.cart-whatsapp {
  width: 100%; background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-600) 100%); color: #000;
  font-family: var(--font-body); font-weight: 700; padding: 1rem; border-radius: 50px; border: none;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(217,119,6,0.3); transition: 0.3s; cursor: pointer;
}
.cart-whatsapp:hover { background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-400) 100%); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5); }

.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; color: var(--text-muted); padding: 2rem; font-family: var(--font-body); }
.cart-empty-visual { width: 80px; margin-bottom: 1.5rem; opacity: 0.8; }
.cart-empty-visual img { width: 100%; height: auto; }
.cart-empty h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.cart-empty p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.cart-explore-btn { color: var(--amber-400); background: none; border: 1px solid var(--amber-400); padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; cursor: pointer; font-family: var(--font-body); }
.cart-explore-btn:hover { background: var(--amber-400); color: #000; }
.cart-continue { text-align: center; margin-top: 1rem; }
.cart-continue button { background: none; border: none; color: #888; transition: 0.3s; cursor: pointer; font-family: var(--font-body); }
.cart-continue button:hover { color: var(--amber-400); }

.checkout-modal { background: var(--zinc-900); border: 1px solid rgba(217, 119, 6, 0.3); border-radius: 16px; width: 90%; max-width: 420px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); transform: scale(0.95); transition: 0.3s; overflow: hidden; font-family: var(--font-body); }
.checkout-overlay.active .checkout-modal { transform: scale(1); }
.checkout-header { padding: 1.25rem 1.5rem; background: linear-gradient(to right, rgba(217, 119, 6, 0.1), transparent); border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; }
.checkout-title { font-family: var(--font-heading); color: #fff; font-size: 1.2rem; }
.checkout-close-btn { background: none; border: none; color: #9ca3af; font-size: 1.5rem; cursor: pointer; }
.checkout-close-btn:hover { color: var(--amber-400); }
.checkout-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-input { background: #09090b; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 0.85rem 1rem; border-radius: 8px; font-family: inherit; outline: none; transition: 0.3s; }
.form-input:focus { border-color: var(--amber-600); box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15); }
.checkout-footer { padding: 1.25rem 1.5rem; background: #09090b; border-top: 1px solid rgba(255,255,255,0.1); }

/* =========================================
   8. EXTRAS, ANIMATIONS & EFFECTS
   ========================================= */
#gold-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 1; mix-blend-mode: screen; }
#brand-intro { position: fixed; inset: 0; background: #000; z-index: 99999; display: flex; align-items: center; justify-content: center; animation: introFadeOut 0.8s ease forwards 2.8s; }
.intro-drop { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 20px; height: 35px; background: linear-gradient(180deg, var(--amber-400), var(--amber-600)); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; box-shadow: 0 0 20px var(--amber-600), inset 0 -5px 10px rgba(255,255,255,0.6); animation: dropFall 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards; }
.intro-content { text-align: center; position: relative; opacity: 0; animation: splashReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.8s; }
.intro-bee { width: 90px; filter: drop-shadow(0 0 20px var(--amber-400)); margin-bottom: 10px; }
.intro-text { font-family: var(--font-heading); color: var(--amber-400); font-weight: 900; font-size: 3rem; text-shadow: 0 0 25px var(--amber-400); letter-spacing: 0.1em; }

.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.35); z-index: 990; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px rgba(0,0,0,0.45); }

body.skip-intro #brand-intro { display: none !important; }
body.skip-intro .navbar, body.skip-intro .hero-content { animation-delay: 0s !important; }

@keyframes dropFall { 0% { top: -50px; transform: translateX(-50%) scaleY(1.2); } 90% { top: 50%; transform: translate(-50%, -50%) scaleY(1); opacity: 1; } 100% { top: 50%; transform: translate(-50%, -50%) scale(5); opacity: 0; } }
@keyframes splashReveal { 0% { opacity: 0; transform: scale(0.5); } 100% { opacity: 1; transform: scale(1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introFadeOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@keyframes glowPulse { 0%, 100% { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3)); } 50% { filter: drop-shadow(0 4px 20px rgba(251,191,36,0.3)); } }
@keyframes bounce { 0%, 100% { transform: translateY(0) translateX(-50%); } 50% { transform: translateY(10px) translateX(-50%); } }
@keyframes navFadeDown { from { opacity: 0; transform: translateX(-50%) translateY(-20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }


/* ========================================================
   9. THE FINAL, UNIFIED MOBILE RESCUE (100% CONFLICT FREE)
   ======================================================== */

@media (max-width: 768px) {
  
  /* --- GENERAL PHYSICS & LAG --- */
  body, html, .hero-section, section, .vault-section { background-attachment: scroll !important; }
  .interaction-cue { display: none !important; }

  /* --- NAVBAR (PREMIUM DARK MENU) --- */
  .navbar { top: 1rem; width: 92%; border-radius: 20px; }
  .brand-text { font-size: 1.2rem; }
  .navbar-menu {
    display: flex !important; position: fixed !important; top: 0 !important; right: -100% !important; left: auto !important;
    height: 100vh !important; width: 75% !important; max-width: 320px !important;
    background: rgba(10, 10, 10, 0.98) !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important; justify-content: center !important; align-items: center !important;
    border-radius: 0 !important; border: none !important; border-left: 1px solid rgba(251, 191, 36, 0.2) !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; box-shadow: -10px 0 30px rgba(0,0,0,0.8) !important;
    z-index: 9990 !important; padding: 0 !important; margin: 0 !important;
  }
  .navbar-menu.active { right: 0 !important; }
  .nav-link { font-size: 1.2rem; margin: 1.5rem 0; }
  .hamburger { display: flex !important; z-index: 10000 !important; position: relative !important; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }
  .nav-cart-btn { align-self: center; margin-bottom: 20px !important; }
  .menu-close-btn { display: block !important; position: absolute !important; top: 20px !important; right: 25px !important; background: none !important; border: none !important; color: #9ca3af !important; font-size: 2rem !important; cursor: pointer !important; z-index: 10001 !important; }
  .menu-close-btn:hover { color: #fbbf24 !important; }

  /* --- HERO SECTION --- */
  .hero-title { font-size: 2.2rem; line-height: 1.2; }
  .hero-subtitle { font-size: 0.9rem; padding: 0 1rem; }

  /* --- CATEGORY FILTERS (SWIPEABLE ROW) --- */
  .category-filters {
    display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important;
    padding-bottom: 15px !important; -webkit-overflow-scrolling: touch !important; justify-content: flex-start !important;
  }
  .category-filters::-webkit-scrollbar { display: none !important; }

  /* --- 🌟 FIX 1: PRODUCTS PAGE (VERTICAL STACK) --- */
  /* This ensures the 'Our Collection' page scrolls normally down the screen */
  .menu-section .desserts-grid {
    display: flex !important; flex-direction: column !important; align-items: center !important;
    overflow-x: hidden !important; padding: 0 1rem !important; width: 100% !important;
  }
  .menu-section .dessert-card { width: 90% !important; max-width: 320px !important; margin: 0 auto 25px auto !important; }

  /* --- 🌟 FIX 2: HOME PAGE SIGNATURE SNAPS (HORIZONTAL SWIPE & EQUAL SIZES) --- */
  /* This explicitly forces the home page to swipe left/right, and makes every single card exactly 260px wide! */
  .featured-desserts .desserts-grid {
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
    overflow-x: auto !important; overflow-y: hidden !important; justify-content: flex-start !important;
    gap: 1.5rem !important; padding: 1rem 1rem 2rem 1rem !important;
    scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important;
  }
  .featured-desserts .dessert-card {
    flex: 0 0 260px !important; width: 260px !important; max-width: 260px !important;
    margin: 0 !important; scroll-snap-align: center !important;
  }

  /* --- 🌟 FIX 3: GPU BLUR BUG (STOPS BACKGROUND FROM GLITCHING) --- */
  /* This hardware-locks the cards so Android cannot bleed the glass blur onto your background photo */
  .products-section::before, .products-section::after, .bg-overlay, .menu-section::before {
    backdrop-filter: none !important; -webkit-backdrop-filter: none !important; filter: none !important;
  }
  .dessert-card {
    -webkit-transform: translate3d(0,0,0) !important;
    transform: translate3d(0,0,0) !important;
    backface-visibility: hidden !important;
  }

  /* --- UNIVERSAL SCROLL & THUMB TRAP FIX --- */
  .desserts-grid, .dessert-card, .products-section .dessert-card, .products-section .dessert-card * {
    touch-action: pan-y pan-x !important; pointer-events: auto !important;
  }
  
  /* --- KILL ALL GYROSCOPE AND INVISIBLE 3D GLARES ON MOBILE --- */
  [data-tilt] { transform: none !important; transform-style: flat !important; will-change: auto !important; }
  .js-tilt-glare, .js-tilt-glare-inner, .containment-field-overlay { display: none !important; pointer-events: none !important; }

  /* --- 🌟 FIX 4: THE VAULT (BRINGS PISTACHIO BACK & ENABLES SWIPE) --- */
  /* We changed display:flex to display:block so the cards start exactly at the left edge and don't get chopped off! */
  .vault-masterpiece { height: 320px !important; touch-action: pan-y !important; }
  .vault-core-reveal.multi-reveal { 
    display: block !important; padding: 0 !important; 
  }
  .containment-grid { 
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; 
    width: 100% !important; height: auto !important; gap: 15px !important;
    overflow-x: auto !important; overflow-y: hidden !important; justify-content: flex-start !important;
    touch-action: pan-x pan-y !important; -webkit-overflow-scrolling: touch !important; 
    padding: 20px !important; scroll-snap-type: x mandatory !important; 
  }
  .containment-grid::after { content: ""; flex: 0 0 20px; }
  .mystery-card { 
    flex: 0 0 220px !important; min-width: 220px !important; width: 220px !important; height: 210px !important; 
    scroll-snap-align: start !important; margin: 0 !important;
  }
  .mystery-image { width: 100px !important; height: 100px !important; margin-bottom: 12px !important; border-radius: 12px !important; object-fit: cover !important; object-position: center !important; }
  .mystery-title { font-size: 1.1rem !important; margin-bottom: 12px !important; }

  /* --- CART & FOOTER --- */
  .cart-drawer { width: 100%; right: -100%; }
  .cart-drawer.show { right: 0; }
  .checkout-modal { max-height: 85vh; display: flex; flex-direction: column; width: 95%; padding: 1.5rem; margin: 10px; overflow-y: auto; }
  .checkout-body { overflow-y: auto; overscroll-behavior: contain; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .footer-link { justify-content: center; }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
@media (max-width: 768px) {
  .coming-soon-card {
    padding: 2.5rem 1rem !important; /* Reduces the bulkiness on phones */
  }
  .coming-soon-card h3 {
    font-size: 1.8rem !important; /* Scales down the header */
  }
  .coming-soon-card p {
    font-size: 0.95rem !important; /* Makes paragraph more readable */
    max-width: 95% !important;
  }
}
/* --- DISCOVER BUTTON --- */
.discover-btn {
  background: transparent;
  color: #fbbf24; /* Golden text */
  border: 1px solid #fbbf24;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 8px;
}

.discover-btn:hover {
  background: rgba(251, 191, 36, 0.1);
}

/* --- THE LUXURY MODAL --- */
.story-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overscroll-behavior: contain; /* THE MAGIC GLITCH-KILLER */
}

.story-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.story-modal-content {
  background: linear-gradient(145deg, #1a1a1a, #121212);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.story-modal-overlay.active .story-modal-content {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal-btn:hover {
  color: #fbbf24;
}

.modal-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  border: 2px solid rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  color: #fbbf24;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-story {
  font-family: 'Montserrat', sans-serif;
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .story-modal-content {
    padding: 1.5rem;
  }
  .modal-image {
    width: 100px;
    height: 100px;
  }
  .modal-title {
    font-size: 1.5rem;
  }
  .modal-story {
    font-size: 0.95rem;
  }
}
/* --- SURGICAL BUG FIXES FOR MOBILE --- */
@media (max-width: 768px) {
  /* 1 & 2. Fix the Checkout Button getting cut off */
  #cartModal .modal-content {
    max-height: 85vh !important; /* Forces the modal to never be taller than the screen */
    overflow-y: auto !important; /* Allows scrolling inside the cart if it gets too long */
    padding-bottom: 30px !important; /* Gives the button a little extra breathing room */
  }
}
/* ========================================================
   10. PC PERFORMANCE & SMOOTHNESS UPGRADE 
   ======================================================== */
@media (min-width: 769px) {
    /* 1. Stop CSS from fighting the 3D JS Engine (Fixes Hover Jitter) */
    .dessert-card {
        /* We remove 'all' and only transition colors and shadows */
        transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease !important;
        
        /* 2. Hardware Acceleration: Moves cards to a dedicated GPU layer */
        will-change: transform; 
    }

    /* 3. Smooth out the Vault Door animations */
    .vault-door {
        will-change: transform;
    }
}