/*
Theme Name: Banh Mi Wow Custom
Theme URI: https://banhmiwow.com
Author: Banh Mi Wow
Description: Custom WordPress theme converted from HTML template for Banh Mi Wow landing page.
Version: 1.0.0
Text Domain: banhmiwow
*/


/* ============================================================
   BÁNH MÌ WOW — Design System
   Hội An Heritage · Warm Yellow · Red Lanterns · Dark Wood
   ============================================================ */

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

/* ── Custom Properties ── */
:root {
  --gold:        #D4A853;
  --gold-dark:   #B8902A;
  --gold-light:  #F0C97A;
  --red:         #C0392B;
  --red-light:   #E74C3C;
  --dark:        #1E1008;
  --wood:        #4A2C18;
  --wood-mid:    #6B3F25;
  --wood-light:  #8B5E3C;
  --cream:       #FFF8E7;
  --cream-dark:  #F5E6C8;
  --cream-mid:   #EEDDB8;
  --green:       #4A7C59;
  --text:        #2C1810;
  --text-mid:    #5C3D2E;
  --text-light:  #8B6A56;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm:   0 2px 8px rgba(30,16,8,.12);
  --shadow-md:   0 6px 24px rgba(30,16,8,.18);
  --shadow-lg:   0 16px 48px rgba(30,16,8,.28);
  --shadow-xl:   0 24px 64px rgba(30,16,8,.38);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; outline: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-sans); }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-xl);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,.4);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.5);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(212,168,83,.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,83,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Vietnamese Pattern Overlay ── */
.pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A853' fill-opacity='0.08'%3E%3Cpath d='M20 20L0 0h40L20 20zm0 0L0 40h40L20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: rgba(30,16,8,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .05em;
}
.nav-logo-sub {
  font-family: var(--font-script);
  font-size: .85rem;
  color: rgba(212,168,83,.7);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 700;
  transition: all .25s var(--ease);
}
.nav-cart-btn:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all .25s var(--ease-spring);
}
.cart-count.show { opacity: 1; transform: scale(1); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(30,16,8,.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px;
  border-top: 1px solid rgba(212,168,83,.2);
  transform: translateY(-20px);
  opacity: 0;
  transition: all .3s var(--ease);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, #1E1008 0%, #3D1F0E 45%, #2C1810 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23D4A853' fill-opacity='0.05'%3E%3Cpath d='M30 30L0 0h60L30 30zm0 0L0 60h60L30 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,.25) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,.2) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.hero-lanterns {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  padding: 0 40px;
}
.lantern {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
}
.lantern-1 { animation: sway 4s ease-in-out infinite; }
.lantern-2 { animation: sway 3.5s ease-in-out infinite .5s; }
.lantern-3 { animation: sway 4.5s ease-in-out infinite 1s; }
.lantern-4 { animation: sway 3.8s ease-in-out infinite .3s; }
@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,83,.1);
  border: 1px solid rgba(212,168,83,.25);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 8px;
}
.hero-title-sm { font-size: clamp(1.2rem, 3vw, 1.8rem); display: block; letter-spacing: .1em; }
.hero-title-lg {
  font-size: clamp(5rem, 14vw, 11rem);
  display: block;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(212,168,83,.4);
  letter-spacing: -.02em;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255,248,231,.7);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,248,231,.5);
}
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(212,168,83,.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   QUICK ORDER STRIP
   ================================================================ */
.quick-order-strip {
  background: linear-gradient(135deg, var(--wood) 0%, var(--dark) 100%);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.quick-order-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23D4A853' fill-opacity='0.06'%3E%3Cpath d='M20 20L0 0h40L20 20zm0 0L0 40h40L20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quick-order-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}
.quick-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-order-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.quick-order-subtitle { font-size: .85rem; color: rgba(255,248,231,.6); }
.quick-order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,168,83,.15);
  border-radius: var(--r-md);
  padding: 16px;
  transition: all .25s var(--ease);
}
.quick-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(212,168,83,.35);
  transform: translateY(-2px);
}
.quick-item-emoji {
  font-size: 2.5rem;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,83,.12);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.quick-item-info { flex: 1; min-width: 0; }
.quick-item-name {
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 2px;
}
.quick-item-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quick-item-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
  margin-top: 4px;
}
.quick-item-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s var(--ease-spring);
}
.quick-item-add:hover {
  background: var(--red-light);
  transform: scale(1.1) rotate(90deg);
}

/* ================================================================
   MENU SECTION
   ================================================================ */
.menu-section {
  padding: 100px 0 80px;
  background: var(--cream);
  position: relative;
}
.menu-header { text-align: center; margin-bottom: 48px; }
.menu-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--text); }
.filter-btn.active {
  background: var(--wood);
  color: var(--gold);
  border-color: var(--wood);
  box-shadow: var(--shadow-md);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.menu-card.hidden { display: none; }
.card-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.card-img-bg {
  position: absolute;
  inset: 0;
  transition: transform .4s var(--ease);
}
.menu-card:hover .card-img-bg { transform: scale(1.08); }
.card-emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-bestseller { background: var(--red); color: var(--white); }
.badge-new { background: var(--green); color: var(--white); }
.badge-veg { background: var(--green); color: var(--white); }
.badge-spicy { background: #FF6B35; color: var(--white); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.card-viet {
  font-family: var(--font-script);
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.card-desc {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-price {
  display: flex;
  flex-direction: column;
}
.price-vnd {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.price-usd {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 700;
}
.card-add {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .25s var(--ease-spring);
}
.card-add:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.05);
}
.spice-meter {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.spice-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-mid);
}
.spice-dot.on { background: #FF6B35; }
.allergens {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.allergen-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-light);
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: 20px;
}

/* ================================================================
   OUR STORY
   ================================================================ */
.story-section {
  background: linear-gradient(135deg, var(--wood) 0%, #3A1F0A 100%);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23D4A853' fill-opacity='0.05'%3E%3Cpath d='M30 30L0 0h60L30 30zm0 0L0 60h60L30 60z'/%3E%3C/g%3E%3C/svg%3E");
}
.story-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #3D1F0E 0%, #1E1008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-xl);
}
.story-img-float {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 45%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  padding: 20px;
}
.story-year {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.story-year-label { font-size: .75rem; font-weight: 700; color: var(--wood); letter-spacing: .08em; }
.story-content { }
.story-section-tag { color: var(--gold); background: rgba(212,168,83,.15); }
.story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}
.story-title em { font-style: italic; color: var(--gold); }
.story-text { font-size: 1rem; color: rgba(255,248,231,.75); line-height: 1.8; margin-bottom: 16px; }
.story-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(212,168,83,.08);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.story-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1.6;
}
.story-features { display: flex; gap: 32px; margin-top: 36px; }
.story-feature { }
.story-feature-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.story-feature-label { font-size: .8rem; color: rgba(255,248,231,.55); font-weight: 700; letter-spacing: .05em; }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section { padding: 80px 0; background: var(--cream-dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
}
.why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.why-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-text { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section { padding: 80px 0; background: var(--cream); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.rating-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.rating-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stars { display: flex; gap: 4px; }
.star { color: var(--gold); font-size: 1.4rem; }
.rating-source { font-size: .85rem; color: var(--text-light); font-weight: 700; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,168,83,.15);
  transition: all .3s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars .star { font-size: 1rem; }
.review-text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.reviewer-meta { font-size: .78rem; color: var(--text-light); }
.reviewer-flag { font-size: 1rem; }

/* ================================================================
   LOCATION & HOURS
   ================================================================ */
.location-section { padding: 80px 0; background: var(--dark); position: relative; overflow: hidden; }
.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A853' fill-opacity='0.04'%3E%3Cpath d='M20 20L0 0h40L20 20zm0 0L0 40h40L20 20z'/%3E%3C/g%3E%3C/svg%3E");
}
.location-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.location-tag { color: var(--gold); background: rgba(212,168,83,.12); }
.location-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 36px;
}
.info-block { display: flex; gap: 16px; margin-bottom: 28px; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(212,168,83,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
}
.info-label { font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-value { font-size: .95rem; color: rgba(255,248,231,.85); line-height: 1.5; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.hours-row { display: flex; justify-content: space-between; font-size: .9rem; color: rgba(255,248,231,.7); padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.hours-row.today { color: var(--gold); font-weight: 700; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 400px;
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  border: 1px solid rgba(212,168,83,.15);
  position: relative;
}
.map-placeholder-emoji { font-size: 4rem; }
.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 40px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .25s var(--ease);
}
.map-link-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ================================================================
   ORDER CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 80px 24px;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M20 20L0 0h40L20 20zm0 0L0 40h40L20 20z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(212,168,83,.1);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-brand-sub { font-family: var(--font-script); font-size: 1rem; color: rgba(212,168,83,.6); margin-bottom: 16px; }
.footer-brand-desc { font-size: .87rem; color: rgba(255,248,231,.5); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .25s var(--ease);
  border: 1px solid rgba(255,255,255,.1);
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col-title {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .88rem;
  color: rgba(255,248,231,.55);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-newsletter { }
.newsletter-desc { font-size: .87rem; color: rgba(255,248,231,.5); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px;
  color: var(--white);
  font-size: .87rem;
  transition: border-color .2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { outline: none; border-color: var(--gold); }
.newsletter-btn {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 40px;
  font-weight: 700;
  font-size: .85rem;
  transition: all .25s var(--ease);
}
.newsletter-btn:hover { background: var(--gold-dark); }
.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ================================================================
   CART SIDEBAR
   ================================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 24px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.cart-close:hover { background: var(--red); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--text-light);
  text-align: center;
  padding: 40px;
}
.cart-empty-icon { font-size: 4rem; opacity: .4; }
.cart-empty-text { font-size: .95rem; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: center;
}
.cart-item-emoji {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .92rem; color: var(--dark); }
.cart-item-mods { font-size: .78rem; color: var(--text-light); }
.cart-item-price { font-weight: 700; color: var(--red); font-size: .9rem; }
.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all .2s;
}
.qty-btn:hover { background: var(--dark); color: var(--gold); }
.qty-num { font-weight: 700; font-size: .95rem; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 20px;
  border-top: 2px solid var(--cream-dark);
  background: var(--cream);
  flex-shrink: 0;
}
.cart-order-type {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.order-type-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 700;
  border: 2px solid var(--cream-mid);
  background: var(--white);
  color: var(--text-mid);
  transition: all .2s;
  text-align: center;
}
.order-type-btn.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--gold);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed var(--cream-mid);
  margin-top: 8px;
}
.cart-total-label { font-weight: 700; color: var(--text); }
.cart-total-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-total-usd { font-size: .85rem; color: var(--text-light); font-weight: 700; }
.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-xl);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .25s var(--ease);
}
.cart-checkout-btn:hover { background: var(--red-light); transform: translateY(-2px); }
.payment-icons { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.payment-icon {
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-mid);
}

/* ================================================================
   CUSTOMIZATION MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92) translateY(20px);
  transition: transform .35s var(--ease-spring);
  box-shadow: var(--shadow-xl);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.modal-item-preview {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
}
.modal-emoji {
  width: 64px; height: 64px;
  border-radius: var(--r-sm);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.modal-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.modal-item-price { font-size: .9rem; color: var(--red); font-weight: 700; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--text-mid);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.modal-close:hover { background: var(--dark); color: var(--white); }
.modal-body { padding: 24px; }
.option-group { margin-bottom: 24px; }
.option-group-title {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill {
  padding: 8px 16px;
  border-radius: 40px;
  border: 2px solid var(--cream-mid);
  background: var(--white);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: all .2s;
  cursor: pointer;
}
.option-pill:hover { border-color: var(--gold); }
.option-pill.selected { border-color: var(--dark); background: var(--dark); color: var(--gold); }
.extras-list { display: flex; flex-direction: column; gap: 8px; }
.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid var(--cream-mid);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s;
}
.extra-item:hover { border-color: var(--gold); }
.extra-item.selected { border-color: var(--dark); background: rgba(30,16,8,.04); }
.extra-name { font-weight: 700; font-size: .87rem; color: var(--dark); }
.extra-price { font-size: .82rem; color: var(--red); font-weight: 700; }
.modal-note {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-mid);
  border-radius: var(--r-sm);
  font-size: .87rem;
  color: var(--text);
  resize: vertical;
  min-height: 72px;
  transition: border-color .2s;
}
.modal-note:focus { outline: none; border-color: var(--gold); }
.modal-footer {
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
}
.modal-add-btn {
  flex: 1;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-xl);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .25s var(--ease);
}
.modal-add-btn:hover { background: var(--red-light); transform: translateY(-2px); }

/* ================================================================
   FLOATING ORDER BUTTON (Mobile)
   ================================================================ */
.fab-order {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 500;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 32px rgba(192,57,43,.5);
  animation: pulse-shadow 2s ease-in-out infinite;
  transition: all .25s var(--ease-spring);
}
.fab-order:hover { transform: scale(1.05); }
.fab-count {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all .25s var(--ease-spring);
}
.fab-count.show { opacity: 1; transform: scale(1); }
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 8px 32px rgba(192,57,43,.5); }
  50% { box-shadow: 0 8px 48px rgba(192,57,43,.7); }
}

/* ================================================================
   TOAST NOTIFICATION
   ================================================================ */
.toast {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 4000;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform .35s var(--ease-spring);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-emoji { font-size: 1.3rem; }

/* ================================================================
   ANIMATIONS / REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quick-order-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { max-width: 400px; }
  .story-img-float { right: 0; bottom: -20px; }
  .location-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cart-btn .cart-label { display: none; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .story-features { flex-direction: column; gap: 16px; }
  .story-img-float { display: none; }
  .location-inner { gap: 40px; }
  .fab-order { display: flex; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

/* WooCommerce custom cards */
.wc-custom-menu-grid .card-img {
  display: block;
  height: 180px;
  overflow: hidden;
  background: var(--cream-dark);
}

.wc-custom-menu-grid .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.4s var(--ease);
}

.wc-custom-menu-grid .menu-card:hover .card-img img {
  transform: scale(1.08);
}

.wc-custom-menu-grid .price-vnd,
.wc-custom-menu-grid .price-vnd .woocommerce-Price-amount {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.wc-custom-menu-grid .price-vnd del {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-right: 6px;
}

.wc-custom-menu-grid .price-vnd ins {
  text-decoration: none;
}

.wc-custom-menu-grid .card-add {
  text-decoration: none;
}

.wc-custom-menu-grid .card-add.added {
  background: var(--green);
  color: var(--white);
}

.wc-custom-menu-grid .added_to_cart {
  display: none !important;
}


/* WooCommerce cart items inside custom sidebar */
.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 16, 8, 0.08);
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-mods {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--red);
}

/* WooCommerce mini cart image inside existing sidebar */
.woo-cart-img {
  overflow: hidden;
}

.woo-cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide old custom cart sidebar to avoid conflict with Side Cart plugin */
#cartOverlay,
#fabOrder {
  display: none !important;
}

/* --- General background and style adjustments --- */
.xoo-wsc-container {
  background-color: #f1f1f1; /* Light beige, like parchment or paper */
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  font-family: 'Playfair Display', serif; /* Elegant font for Vietnamese style */
  padding: 24px;
  width: 80%; /* You can adjust the width */
  margin-left: 10%;
}

/* Header of the side cart */
.xoo-wsc-header {
  background-color: var(--red); /* Red tone to match the theme */
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  font-size: 1.5rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  letter-spacing: 2px;
}

/* Close button */
.xoo-wsc-header .xoo-wsc-close {
  color: var(--gold); /* Golden color to match the theme */
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.xoo-wsc-header .xoo-wsc-close:hover {
  color: var(--dark); /* Hover effect with dark tone */
}

/* Cart icon & count style */
.xoo-wsc-basket {
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.xoo-wsc-items-count {
  background: var(--gold); /* Golden color for badge */
  color: #fff;
  font-size: 0.9rem;
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -4px;
}

/* Product card inside side cart */
.xoo-wsc-items {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Product image style */
.xoo-wsc-items img {
  border-radius: 8px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 16px;
}

/* Product name */
.xoo-wsc-items .xoo-wsc-item-title {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #333;
}

/* Product price style */
.xoo-wsc-items .xoo-wsc-item-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--red); /* Red color to emphasize price */
}

/* Quantity input and remove item button */
.xoo-wsc-items .xoo-wsc-item-quantity {
  display: flex;
  align-items: center;
}

.xoo-wsc-items .xoo-wsc-item-quantity input {
  width: 40px;
  text-align: center;
  margin-right: 8px;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px;
  border: 1px solid #ccc;
}

.xoo-wsc-items .xoo-wsc-item-remove {
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
}

/* --- General background and style adjustments --- */
.xoo-wsc-container {
  background-color: #fff; /* Nền trắng, nhẹ nhàng */
  border-radius: 16px;      /* Góc bo tròn */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Màu bóng nhẹ để tạo chiều sâu */
  font-family: 'Playfair Display', serif; /* Font chữ trang trọng */
  padding: 24px;
  width: 80%;  /* Độ rộng của cart */
  margin-left: 10%;
}

/* Header của side cart */
.xoo-wsc-header {
  background-color: var(--red); /* Đỏ tương tự theme */
  color: #fff; /* Chữ trắng */
  border-radius: 16px;
  padding: 16px;
  font-size: 1.5rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  letter-spacing: 2px;
}

/* Nút đóng (close button) */
.xoo-wsc-header .xoo-wsc-close {
  color: var(--gold); /* Vàng */
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.xoo-wsc-header .xoo-wsc-close:hover {
  color: var(--dark); /* Khi hover sẽ chuyển sang đen */
}

/* Cart icon & count style */
.xoo-wsc-basket {
  background: var(--red); /* Đỏ */
  color: #fff; /* Chữ trắng */
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.xoo-wsc-items-count {
  background: var(--gold); /* Màu vàng cho badge */
  color: #fff;
  font-size: 0.9rem;
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -4px;
}

/* Sản phẩm trong side cart */
.xoo-wsc-items {
  background-color: #fff; /* Nền trắng cho mỗi sản phẩm */
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Bóng nhẹ */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hình ảnh sản phẩm */
.xoo-wsc-items img {
  border-radius: 8px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 16px;
}

/* Tên sản phẩm */
.xoo-wsc-items .xoo-wsc-item-title {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #333;  /* Chữ đen dễ đọc */
}

/* Giá sản phẩm */
.xoo-wsc-items .xoo-wsc-item-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--red); /* Đỏ cho giá sản phẩm */
}

/* Cộng, giảm số lượng sản phẩm */
.xoo-wsc-items .xoo-wsc-item-quantity {
  display: flex;
  align-items: center;
}

.xoo-wsc-items .xoo-wsc-item-quantity input {
  width: 40px;
  text-align: center;
  margin-right: 8px;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px;
  border: 1px solid #ccc;
}

/* Nút xóa sản phẩm */
.xoo-wsc-items .xoo-wsc-item-remove {
  font-size: 1.2rem;
  color: var(--gold); /* Vàng cho nút xóa */
  cursor: pointer;
}

/* Footer của side cart */
.xoo-wsc-footer {
  padding: 20px;
  background-color: var(--dark); /* Đen cho phần footer */
  color: #fff;
  border-radius: 16px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Subtotal */
.xoo-wsc-footer .xoo-wsc-subtotal {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold); /* Màu vàng cho subtotal */
}

/* Nút Checkout */
.xoo-wsc-footer .xoo-wsc-checkout-btn {
  background-color: var(--red); /* Đỏ cho nút checkout */
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.xoo-wsc-footer .xoo-wsc-checkout-btn:hover {
  background-color: var(--gold); /* Màu vàng khi hover */
}

/* Footer text */
.xoo-wsc-footer .xoo-wsc-footer-text {
  font-size: 0.9rem;
  color: var(--gold); /* Màu vàng cho footer text */
}

/* Nút đóng (close) */
.xoo-wsc-close {
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.xoo-wsc-close:hover {
  color: var(--red); /* Màu đỏ khi hover */
}

/* Mobile responsive */
@media only screen and (max-width: 768px) {
  .xoo-wsc-container {
    padding: 16px;
    width: 90% !important;
    margin-left: 5%;
  }

  .xoo-wsc-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .xoo-wsc-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .xoo-wsc-checkout-btn {
    width: 100%;
    padding: 15px;
  }
}





.bmw-single-product-page {
    background: #fff8e8;
    padding: 130px 24px 70px;
    min-height: 80vh;
}

.bmw-single-product-container {
    max-width: 1150px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.bmw-product-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    display: block;
}

.bmw-product-label {
    color: #c59a47;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bmw-product-title {
    font-size: 42px;
    line-height: 1.15;
    color: #1c0d05;
    margin-bottom: 18px;
}

.bmw-product-price {
    color: #c6372d;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.bmw-product-description {
    color: #3a2a1c;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bmw-product-cart {
    margin-bottom: 24px;
}

.bmw-product-cart .quantity input {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    width: 70px;
}

.bmw-product-cart button,
.bmw-product-cart .single_add_to_cart_button {
    background: #1c0d05 !important;
    color: #f6c15b !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.bmw-back-menu {
    display: inline-block;
    color: #1c0d05;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
}

.bmw-back-menu:hover {
    color: #c6372d;
}

.bmw-no-image {
    background: #f2e8d5;
    border-radius: 22px;
    padding: 80px 20px;
    text-align: center;
    color: #5a4630;
}

@media (max-width: 768px) {
    .bmw-single-product-page {
        padding: 110px 14px 50px;
    }

    .bmw-single-product-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 24px;
    }

    .bmw-product-title {
        font-size: 30px;
    }

    .bmw-product-price {
        font-size: 23px;
    }
}

.card-name,
.card-desc,
.card-price {
    color: inherit;
    text-decoration: none;
}

.card-name {
    display: block;
}

.card-desc {
    display: block;
}

.card-price {
    display: block;
}

.card-name:hover,
.card-desc:hover,
.card-price:hover {
    color: var(--red, #c6372d);
}

//* ── Floating CTA Stack ─────────────────────────────────────── */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.float-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.float-cta-label {
  background: rgba(20,10,5,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.float-cta-btn:hover .float-cta-label {
  opacity: 1;
  transform: translateX(0);
}
.float-cta-btn:hover .float-cta-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.float-cta-phone .float-cta-icon { background: linear-gradient(135deg, #D4A853, #c0392b); }
.float-cta-zalo  .float-cta-icon { background: linear-gradient(135deg, #0068ff, #0047cc); }
.float-cta-wa    .float-cta-icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-cta-mess  .float-cta-icon { background: linear-gradient(135deg, #0084ff, #a259ff); }
.float-cta-zalo .float-cta-icon::after,
.float-cta-wa   .float-cta-icon::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  animation: cta-pulse 2s ease-out infinite;
}
.float-cta-zalo .float-cta-icon::after { background: rgba(0,104,255,0.3); }
.float-cta-wa   .float-cta-icon::after { background: rgba(37,211,102,0.3); }
@keyframes cta-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}
@media (max-width: 640px) {
  .float-cta { right: 14px; bottom: 90px; gap: 10px; }
  .float-cta-icon { width: 46px; height: 46px; font-size: 19px; }
  .float-cta-label { display: none; }
}