/* ===== CSS Variables & Reset ===== */
:root {
  --red-900: #7a1518;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --gold-600: #ca8a04;
  --gold-500: #eab308;
  --gold-400: #facc15;
  --gold-300: #fde047;
  --gold-200: #fef08a;
  --cream: #fef7ed;
  --cream-dark: #fdf2e4;
  --brown-900: #3b1a08;
  --brown-800: #5c2d0e;
  --brown-700: #7c3e14;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--neutral-800);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1600px) { .container { max-width: 1400px; } }

.gold-text {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-700), var(--red-800));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.5);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red-800);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-add-cart {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--red-700), var(--red-800));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 12px;
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(122, 21, 24, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  color: var(--white);
  padding: 8px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.cart-btn:hover { background: rgba(255,255,255,0.15); }

.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold-500);
  color: var(--brown-900);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}
.cart-count.show { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(122, 21, 24, 0.92) 0%, rgba(59, 26, 8, 0.85) 50%, rgba(122, 21, 24, 0.9) 100%);
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold-400);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.5s both;
}
@media (max-height: 700px) { .hero-scroll { display: none; } }
.hero-scroll span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== Marquee Banner ===== */
.marquee-banner {
  background: linear-gradient(135deg, var(--red-800), var(--red-900));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 32px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-400);
}
.marquee-track .dot { font-size: 0.5rem; opacity: 0.4; }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--red-700);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: var(--gold-400); }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--neutral-500);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Products Section ===== */
.products { padding: 100px 0; background: var(--cream); }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.product-card.card-press { animation: cardPress 0.35s ease; }
@keyframes cardPress {
  0% { transform: scale(1); }
  30% { transform: scale(0.96); box-shadow: var(--shadow-sm); }
  60% { transform: scale(1.02); box-shadow: var(--shadow-xl); }
  100% { transform: scale(1); }
}

.product-image {
  position: relative;
  width: 100%; aspect-ratio: 600 / 400;
  overflow: hidden;
  -webkit-user-select: none; user-select: none;
}
.product-image::before {
  content: ''; position: absolute; inset: 0; z-index: 2; background: transparent;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  -webkit-user-drag: none; pointer-events: none;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-badges {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end; z-index: 2;
}
.product-badge {
  padding: 5px 12px;
  background: var(--red-700); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.product-badge.classic { background: var(--red-700); color: var(--white); }
.product-badge.bestseller { background: var(--white); color: var(--gold-600); }
.product-badge.premium { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); color: var(--brown-900); }
.product-badge.spicy { background: #ea580c; color: var(--white); }

.product-info { padding: 24px; }
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--neutral-900); margin-bottom: 8px;
}
.product-desc {
  font-size: 0.88rem; color: var(--neutral-500);
  line-height: 1.5; margin-bottom: 16px;
}

.product-meta { margin-bottom: 16px; }
.price-per-pc { font-size: 0.82rem; color: var(--neutral-400); font-weight: 500; }

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--neutral-100);
}
.pack-label {
  display: block; font-size: 0.78rem; color: var(--neutral-400);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.pack-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; color: var(--red-700);
}

.quantity-control {
  display: flex; align-items: center; gap: 4px;
  background: var(--neutral-100);
  border-radius: var(--radius-full); padding: 4px;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--neutral-600);
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--white); color: var(--red-700);
  box-shadow: var(--shadow-sm);
}
.qty-value {
  width: 36px; text-align: center;
  font-weight: 700; font-size: 16px;
  color: var(--neutral-800);
  border: none; background: transparent; outline: none;
  font-family: inherit; padding: 0;
  -moz-appearance: textfield;
}
.qty-value::-webkit-outer-spin-button,
.qty-value::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ===== About Section ===== */
.about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.about-images { position: relative; }
.about-img.main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--neutral-900);
  margin-bottom: 20px;
}
.about-lead {
  font-size: 1.05rem; color: var(--neutral-600);
  line-height: 1.7; margin-bottom: 36px;
}

.features-list { display: flex; flex-direction: column; gap: 24px; }
.feature { display: flex; gap: 16px; }
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(185, 28, 28, 0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-700);
}
.feature h4 { font-size: 1rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 4px; }
.feature p { font-size: 0.88rem; color: var(--neutral-500); line-height: 1.5; }

/* ===== Feedbacks Section ===== */
.feedbacks-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown-900), var(--red-900), var(--brown-900));
  overflow: hidden;
}
.feedbacks-section .section-header h2 { color: var(--white); }
.feedbacks-section .section-header p { color: rgba(255,255,255,0.6); }

.feedbacks-carousel {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.feedbacks-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}
.feedbacks-track:active { cursor: grabbing; }

.feedback-bubble {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
}

.bubble-content {
  background: var(--white);
  border-radius: 20px 20px 20px 4px;
  padding: 24px 28px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.feedback-bubble:hover .bubble-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.bubble-content p {
  font-size: 0.92rem;
  color: var(--neutral-700);
  line-height: 1.6;
  font-style: italic;
}

.bubble-tail {
  width: 0; height: 0;
  border-left: 12px solid var(--white);
  border-bottom: 12px solid transparent;
  margin-left: 24px;
  margin-top: -1px;
}

.bubble-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-left: 8px;
}
.bubble-avatar img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
}
.bubble-avatar span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.feedbacks-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.feedback-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.feedback-nav-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--red-800), var(--red-900), var(--brown-900));
}

.cta-card { display: flex; align-items: center; gap: 64px; }

.cta-content { flex: 1; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white); margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px;
}
.cta-content p strong { color: var(--gold-400); }

.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.cta-info { display: flex; gap: 32px; flex-wrap: wrap; }
.info-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.info-item svg { color: var(--gold-400); flex-shrink: 0; }

.cta-image { flex-shrink: 0; }
.cta-image img {
  width: 240px; height: 240px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

/* ===== Footer ===== */
.footer { background: var(--neutral-900); padding: 64px 0 0; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm); margin-bottom: 16px;
}
.footer-brand p { color: var(--neutral-400); font-size: 0.9rem; line-height: 1.6; }

.footer-links h4 {
  color: var(--white); font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px;
}
.footer-links a {
  display: block; color: var(--neutral-400);
  font-size: 0.88rem; padding: 4px 0; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact-note { color: var(--neutral-400); font-size: 0.88rem; margin-top: 8px; }
.footer-contact-note strong { color: var(--gold-400); }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: var(--neutral-500); font-size: 0.82rem; }
.footer-hours { margin-bottom: 4px; }

/* ===== Cart Sidebar ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 2000;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: 400px; max-width: 90vw; height: 100vh;
  background: var(--white); z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--neutral-100);
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800;
}
.cart-close {
  font-size: 1.8rem; color: var(--neutral-400);
  transition: var(--transition);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.cart-close:hover { background: var(--neutral-100); color: var(--neutral-700); }

.cart-body { flex: 1; overflow-y: auto; padding: 24px; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--neutral-400); }
.cart-empty svg { margin: 0 auto 16px; opacity: 0.3; }
.cart-empty p { font-size: 1rem; margin-bottom: 20px; }

.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--neutral-100);
  animation: fadeInUp 0.3s ease;
}
.cart-item-img {
  position: relative;
  width: 100px; aspect-ratio: 600 / 400;
  border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
  -webkit-user-select: none; user-select: none;
}
.cart-item-img::before {
  content: ''; position: absolute; inset: 0; z-index: 2; background: transparent;
}
.cart-item-img img {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-user-drag: none; pointer-events: none;
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.95rem; color: var(--neutral-800); margin-bottom: 2px; }
.cart-item-meta { font-size: 0.8rem; color: var(--neutral-400); margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-weight: 700; color: var(--red-700); font-size: 0.95rem; }
.cart-item-remove {
  font-size: 0.78rem; color: var(--neutral-400);
  transition: var(--transition); padding: 4px 8px; border-radius: var(--radius-sm);
}
.cart-item-remove:hover { color: var(--red-600); background: rgba(239, 68, 68, 0.08); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--neutral-100);
  background: var(--neutral-50);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--neutral-800);
}
.cart-total span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--red-700);
}
.cart-note { text-align: center; font-size: 0.78rem; color: var(--neutral-400); margin-top: 12px; }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--neutral-900); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 600; z-index: 3000;
  opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; height: 40px; }
  50% { opacity: 1; height: 50px; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Checkout Page ===== */
.checkout-page { background: var(--cream); }

.checkout-nav {
  background: transparent; padding: 16px 0;
  position: absolute; top: 0; left: 0; width: 100%; z-index: 10;
}
.checkout-nav .nav-logo {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 10px;
}
.checkout-nav .nav-logo img { width: 42px; height: 42px; border-radius: var(--radius-sm); }

.checkout-hero {
  position: relative; padding: 120px 0 90px; overflow: hidden;
  text-align: center; min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brown-900), var(--red-900), var(--brown-900));
}
.checkout-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(59, 26, 8, 0.85) 0%, rgba(122, 21, 24, 0.75) 50%, rgba(59, 26, 8, 0.90) 100%);
}
.checkout-hero-content { position: relative; z-index: 1; }
.checkout-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: var(--white); margin-bottom: 0;
  text-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.checkout-hero-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 16px auto; border-radius: 2px;
}
.checkout-hero p {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  max-width: 500px; margin: 0 auto;
}

.checkout-main { padding: 40px 0 80px; min-height: calc(100vh - 400px); }

.checkout-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red-700); font-weight: 600; font-size: 0.9rem;
  margin-bottom: 32px; transition: var(--transition);
}
.checkout-back:hover { color: var(--red-600); transform: translateX(-4px); }

.checkout-empty { text-align: center; padding: 80px 20px; }
.checkout-empty svg { margin-bottom: 16px; }
.checkout-empty p { font-size: 1.2rem; color: var(--neutral-500); margin-bottom: 24px; }

.checkout-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

.checkout-summary {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid var(--gold-500);
}
.checkout-summary h2, .checkout-form-section h2, .checkout-message-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--neutral-900); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--neutral-100);
}

.order-item {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  padding: 14px 0; border-bottom: 1px solid var(--neutral-100);
}
.order-item-name { font-weight: 700; font-size: 0.95rem; color: var(--neutral-800); flex: 1; }
.order-item-detail { font-size: 0.82rem; color: var(--neutral-400); flex-basis: 100%; margin-top: 2px; }
.order-item-price { font-weight: 700; color: var(--red-700); font-size: 0.95rem; }

.order-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 8px;
  font-size: 1.15rem; font-weight: 700; color: var(--neutral-900);
}
.order-total span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--red-700);
}

.checkout-form-section {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid var(--red-700);
}

.form-group { margin-bottom: 24px; }
.form-group > label:first-child {
  display: block; font-weight: 600; font-size: 0.9rem;
  color: var(--neutral-700); margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--neutral-200); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--neutral-800); background: var(--neutral-50);
  transition: var(--transition);
}
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1); background: var(--white);
}

.phone-input-wrapper {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--neutral-200); border-radius: var(--radius-sm);
  background: var(--neutral-50); transition: var(--transition); overflow: hidden;
}
.phone-input-wrapper:focus-within {
  border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1); background: var(--white);
}
.phone-prefix {
  display: flex; align-items: center; padding: 12px 12px 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--neutral-600); background: var(--neutral-100);
  border-right: 1.5px solid var(--neutral-200);
  white-space: nowrap; user-select: none;
}
.phone-input-wrapper input[type="tel"] {
  border: none; border-radius: 0; background: transparent; padding-left: 12px;
}
.phone-input-wrapper input[type="tel"]:focus { border: none; box-shadow: none; background: transparent; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition); font-size: 0.95rem; color: var(--neutral-700);
}
.radio-label:hover { border-color: var(--red-700); background: rgba(185, 28, 28, 0.03); }
.radio-label input[type="radio"] { accent-color: var(--red-700); width: 18px; height: 18px; }
.radio-label input[type="radio"]:checked + span { font-weight: 600; color: var(--red-700); }

.checkout-message-section {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--brown-900), var(--red-900), var(--brown-900));
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.checkout-message-section h2 {
  color: var(--white) !important;
  border-bottom-color: rgba(255,255,255,0.15) !important;
}

.checkout-instruction {
  color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6;
  margin-bottom: 20px; padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold-500); border-radius: 6px;
}
.checkout-instruction strong { color: var(--gold-500); }

.order-message-box {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); padding: 20px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  white-space: pre-wrap; word-wrap: break-word;
  max-height: 400px; overflow-y: auto; margin-bottom: 24px;
}

.message-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.checkout-footer {
  background: var(--neutral-900); padding: 40px 0 24px; text-align: center;
}
.checkout-footer p { color: var(--neutral-500); font-size: 0.82rem; }

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-brand-text { font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(122, 21, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 1000;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.3rem; padding: 14px 32px; }

  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .cta-card { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .cta-info { justify-content: center; }
  .cta-image img { width: 160px; height: 160px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.2rem; }

  .feedback-bubble { width: 290px; }

  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-hero { padding: 80px 0 50px; min-height: 260px; }
  .message-actions { flex-direction: column; }
  .message-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .products-grid { max-width: 100%; }
  .feedback-bubble { width: 260px; }
  .checkout-summary, .checkout-form-section, .checkout-message-section { padding: 20px; }
}
