/* ===== ROOT & RESET ===== */
:root {
  --fire:    #FF4500;
  --gold:    #FFC107;
  --cream:   #FFF9F2;
  --dark:    #1C0F00;
  --smoke:   #2A1500;
  --muted:   #9E7B5A;
  --border:  #F0E6D8;
  --green:   #4CAF50;
  --shadow:  0 8px 32px rgba(28,15,0,0.10);
  --radius:  16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

/* ===== CURSOR ===== */
#cursor {
  width: 18px; height: 18px;
  background: var(--fire);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: transform 0.12s;
  display: none;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--fire);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.promo-bar span {
  background: rgba(0,0,0,0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.4rem;
}

/* ===== NAV ===== */
nav {
  background: var(--dark);
  position: sticky; top: 0; z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--gold);
  letter-spacing: 3px; line-height: 1;
  cursor: pointer;
}
.logo span { color: var(--fire); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: #ccc; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: color 0.2s; padding: 0.25rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--fire);
  transition: width 0.3s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

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

.cart-btn {
  background: var(--fire); border: none; color: white;
  padding: 0.55rem 1.3rem; border-radius: 50px;
  font-weight: 800; font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.2s; letter-spacing: 0.5px;
}
.cart-btn:hover { background: var(--gold); color: var(--dark); transform: scale(1.05); }

.cart-count {
  background: white; color: var(--fire);
  border-radius: 50%; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 900;
}

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: white; border-radius: 2px; transition: all 0.3s;
}

.mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: var(--dark);
  padding: 1rem 2rem 1.5rem;
  display: none; flex-direction: column; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-10px); opacity: 0;
  transition: all 0.3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  color: #ccc; font-weight: 700; font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,69,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left {
  padding: 6rem 3rem 4rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,193,7,0.15); border: 1px solid rgba(255,193,7,0.4);
  color: var(--gold); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  width: fit-content;
  animation: fadeDown 0.8s ease both;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  color: white; letter-spacing: 2px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero h1 .italic {
  font-family: 'Fraunces', serif;
  color: var(--gold); display: block; font-size: 0.6em; letter-spacing: 0;
}
.hero-desc {
  color: #bbb; margin: 2rem 0; max-width: 400px;
  line-height: 1.8; font-size: 1rem; font-weight: 600;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  animation: fadeUp 0.8s 0.8s ease both;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: #888;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn-fire {
  background: var(--fire); color: white; border: none;
  padding: 0.9rem 2.5rem; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; cursor: pointer;
  letter-spacing: 0.5px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,69,0,0.4);
}
.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,69,0,0.5);
  background: #ff5722;
}
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.9rem 2.5rem; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== BURGER ANIMATION ===== */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; padding: 4rem 2rem;
}
.burger-animation {
  position: relative; width: 320px; height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.burger-glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,69,0,0.3) 0%, transparent 70%);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.burger-layer {
  width: 100%; text-align: center; position: absolute;
  font-size: 4.5rem; line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.layer-bun-top    { top: 0px;   animation: floatLayer 3s 0.0s ease-in-out infinite; }
.layer-lettuce    { top: 72px;  animation: floatLayer 3s 0.3s ease-in-out infinite; }
.layer-tomato     { top: 130px; animation: floatLayer 3s 0.5s ease-in-out infinite; }
.layer-cheese     { top: 178px; animation: floatLayer 3s 0.7s ease-in-out infinite; }
.layer-patty      { top: 220px; animation: floatLayer 3s 0.9s ease-in-out infinite; }
.layer-onion      { top: 268px; animation: floatLayer 3s 1.1s ease-in-out infinite; }
.layer-bun-bottom { top: 318px; animation: floatLayer 3s 1.3s ease-in-out infinite; }

@keyframes floatLayer {
  0%,100% { transform: translateY(0px)   rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(3deg); }
}
.burger-label {
  position: absolute; right: -85px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.b-tag {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.b-tag::before { content: '—'; color: var(--fire); }

/* ===== FEATURES STRIP ===== */
.strip {
  background: var(--gold);
  padding: 1.1rem 2rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 0.82rem; color: var(--dark);
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--smoke);
  padding: 5rem 4rem;
}
.video-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: center;
}
.video-text .section-title { color: white; }
.video-text .tag           { color: var(--gold); }
.video-text .section-sub   { color: #aaa; }

.video-wrapper {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 16/9;
  background: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
/* The real <video> element */
.video-wrapper video {
  width: 100%; height: 100%;
  object-fit: fill; display: block;
}
/* Placeholder shown until a real video src is set */
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1500 100%);
  color: white; text-align: center; gap: 0.75rem;
  padding: 2rem;
}
.vp-icon  { font-size: 4rem; }
.vp-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 2px; color: var(--gold); }
.vp-hint  { font-size: 0.8rem; color: #aaa; font-weight: 600; line-height: 1.6; }
.vp-hint code { background: rgba(255,255,255,0.1); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.75rem; color: var(--gold); }

.video-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--fire); color: white;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 50px;
}

/* ===== SECTION SHARED ===== */
.section       { padding: 5rem 4rem; }
.tag {
  display: inline-block;
  color: var(--fire); font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 1px; line-height: 1; margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--muted); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 2.5rem; max-width: 500px; line-height: 1.7;
}

/* ===== MENU ===== */
#menu { background: var(--cream); }
.menu-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.filter-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.2rem; border-radius: 50px;
  border: 2px solid var(--border); background: white;
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.5px; cursor: pointer; transition: all 0.25s; color: var(--muted);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--dark); color: white; border-color: var(--dark);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

/* Card */
.burger-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s; position: relative;
}
.burger-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(28,15,0,0.15);
}

/* ── Card image: emoji or personal photo ── */
.card-img {
  height: 200px;
  background: linear-gradient(135deg, #2A1500 0%, #3D2010 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; position: relative; overflow: hidden;
}
/*
  When you add your own photo, the <img> inside .card-img will auto-fill:
  .card-img img { width:100%; height:100%; object-fit:cover; }
*/
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,69,0,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.card-emoji {
  position: relative; z-index: 1;
  transition: transform 0.3s; font-size: 7rem;
}
.burger-card:hover .card-emoji { transform: scale(1.12) rotate(-5deg); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  color: white; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1.5px; padding: 0.3rem 0.7rem;
  border-radius: 50px; text-transform: uppercase; z-index: 2;
}
.card-badge.classic { background: var(--dark); }
.card-badge.hot     { background: var(--fire); }
.card-badge.deal    { background: var(--gold); color: var(--dark); }
.card-badge.new     { background: var(--green); }

.card-body     { padding: 1.25rem; }
.card-top      { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.3rem; }
.card-name     { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 0.5px; line-height: 1.1; }
.card-rating   { display: flex; align-items: center; gap: 0.2rem; color: var(--gold); font-size: 0.78rem; font-weight: 800; white-space: nowrap; }
.card-desc     { color: var(--muted); font-size: 0.8rem; font-weight: 600; line-height: 1.5; margin-bottom: 1rem; }
.card-bottom   { display: flex; align-items: center; justify-content: space-between; }
.card-price    { font-size: 1.35rem; font-weight: 900; color: var(--dark); }
.card-price span { font-size: 0.75rem; font-weight: 700; color: var(--muted); margin-right: 2px; }

.add-to-cart {
  background: var(--fire); color: white; border: none;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-weight: 800; font-size: 0.8rem; cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem;
}
.add-to-cart:hover  { background: var(--dark); transform: scale(1.05); }
.add-to-cart.added  { background: var(--green); }

/* ===== DEALS ===== */
.deal-section {
  background: var(--dark); color: white;
  padding: 4rem; text-align: center; position: relative; overflow: hidden;
}
.deal-section::before {
  content: '🍔';
  position: absolute; font-size: 20rem; opacity: 0.04;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.promo-code-box {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,193,7,0.1); border: 2px dashed var(--gold);
  padding: 1rem 2rem; border-radius: 12px; margin-bottom: 2rem;
  cursor: pointer; transition: background 0.2s;
}
.promo-code-box:hover { background: rgba(255,193,7,0.2); }
.promo-code  { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--gold); letter-spacing: 5px; }
.copy-hint   { font-size: 0.75rem; color: #888; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.countdown { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.cd-unit   { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem 1.5rem; min-width: 80px; text-align: center; }
.cd-num    { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; color: var(--gold); display: block; }
.cd-lbl    { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: #888; font-weight: 700; }

/* ===== REVIEWS ===== */
#reviews { background: #FFF3E8; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-card::before {
  content: '"';
  font-family: 'Fraunces', serif; font-size: 8rem;
  color: var(--fire); opacity: 0.06;
  position: absolute; top: -1rem; left: 0.5rem;
  line-height: 1; pointer-events: none;
}
.review-top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.reviewer-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 900; border: 3px solid var(--gold);
  overflow: hidden;
}
/* When a real photo is used inside .reviewer-avatar */
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.reviewer-name   { font-weight: 900; font-size: 0.95rem; }
.reviewer-handle { color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.review-date     { margin-left: auto; font-size: 0.72rem; color: #bbb; font-weight: 700; }
.review-stars    { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.6rem; letter-spacing: 1px; }
.review-text     { color: #555; font-size: 0.88rem; line-height: 1.7; font-weight: 600; }
.review-burger   {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.8rem; background: var(--cream);
  padding: 0.3rem 0.7rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 800; color: var(--fire);
}

/* Rating Summary */
.rating-summary {
  background: var(--dark); color: white; border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.big-rating { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--gold); line-height: 1; }
.big-stars  { font-size: 1.5rem; color: var(--gold); margin: 0.4rem 0; }
.rating-count { color: #888; font-size: 0.82rem; font-weight: 700; }
.bar-row { width: 100%; margin-top: 1rem; }
.bar-line { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.bar-lbl  { font-size: 0.72rem; font-weight: 800; color: #aaa; width: 12px; text-align: right; }
.bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.bar-fill  { height: 100%; background: var(--gold); border-radius: 3px; width: 0%; transition: width 1.2s ease; }
.bar-pct   { font-size: 0.68rem; color: #888; font-weight: 700; width: 28px; }

/* ===== ABOUT ===== */
.about-section {
  background: var(--dark); color: white; text-align: center;
}
.about-stats {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: #555;
  text-align: center; padding: 2.5rem 2rem;
  font-size: 0.82rem; font-weight: 700;
}
.footer-logo   { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
footer .fire   { color: var(--fire); }
.footer-contact { margin-top: 0.5rem; color: #444; }

/* ===== CART ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 500; opacity: 0; pointer-events: none;
  transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; right: -460px; top: 0; bottom: 0; width: 440px;
  background: white; z-index: 501;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { right: 0; }

.cart-head {
  background: var(--dark); padding: 1.4rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: white; letter-spacing: 2px; }
.cart-close   { background: none; border: none; color: #aaa; font-size: 1.4rem; cursor: pointer; transition: color 0.2s; }
.cart-close:hover { color: white; }

.cart-content-wrap { display: flex; flex-direction: column; flex: 1; overflow: hidden; }

.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--muted); text-align: center; gap: 1rem; padding: 2rem;
}
.cart-empty-icon { font-size: 5rem; }

.cart-items-list { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: 12px; background: var(--cream);
  margin-bottom: 0.75rem;
}
.ci-emoji { font-size: 2.8rem; flex-shrink: 0; }
.ci-info  { flex: 1; }
.ci-name  { font-weight: 800; font-size: 0.92rem; }
.ci-price { color: var(--fire); font-weight: 900; font-size: 0.9rem; }

.ci-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  font-weight: 900; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1;
}
.qty-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }
.qty-num    { font-weight: 900; font-size: 0.9rem; min-width: 20px; text-align: center; }
.remove-btn { background: none; border: none; color: #ccc; cursor: pointer; font-size: 1rem; transition: color 0.2s; }
.remove-btn:hover { color: var(--fire); }

.cart-foot    { border-top: 1px solid var(--border); padding: 1.5rem; background: white; }
.cart-subtotal { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; }
.cart-total-row {
  display: flex; justify-content: space-between;
  font-size: 1.15rem; font-weight: 900; margin-bottom: 1.2rem;
  padding-top: 0.5rem; border-top: 2px dashed var(--border);
}
.cart-total-row span:last-child { color: var(--fire); }

.sample-notice {
  background: rgba(255,193,7,0.1); border: 1.5px solid var(--gold);
  border-radius: 10px; padding: 0.8rem 1rem; margin-bottom: 1rem;
  font-size: 0.78rem; font-weight: 700; color: #7a5a00;
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.checkout-disabled {
  width: 100%; background: #ddd; color: #aaa; border: none;
  padding: 1rem; border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 2px; cursor: not-allowed;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--dark); color: white;
  padding: 0.9rem 1.5rem; border-radius: 12px;
  font-weight: 700; font-size: 0.88rem;
  z-index: 9000; transform: translateY(80px); opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 4px solid var(--fire);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  max-width: 280px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity:0; transform: translateY(-16px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .video-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .burger-label { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 2rem; }
  .hero-right { padding: 2rem; min-height: 380px; }
  .section { padding: 3.5rem 1.5rem; }
  .video-section { padding: 3rem 1.5rem; }
  .deal-section { padding: 3rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cart-drawer { width: 100%; right: -100%; }
  .strip { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 1.2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .countdown { gap: 0.6rem; }
  .cd-unit { min-width: 60px; padding: 0.7rem 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
