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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #e65c00;
  --primary-dark: #c04a00;
  --primary-light: #ff8533;
  --secondary: #f5a623;
  --accent: #b71c1c;
  --bg: #fdf8f3;
  --card: #fffcf8;
  --text: #2d1a0e;
  --text-muted: #7a5c44;
  --border: #e8d5c0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s, visibility 0.4s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-spinner {
  width: 52px; height: 52px;
  border: 4px solid #e8d5c0;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 14px;
}
.loader-inner p { color: var(--primary); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TOAST ===== */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 8888;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--text);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
  max-width: 300px;
  display: flex; align-items: center; gap: 8px;
}
.toast.success { border-left: 4px solid #4caf50; }
.toast.error { border-left: 4px solid var(--accent); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,252,248,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.logo:hover .logo-icon { transform: scale(1.08); }
.logo-text .brand { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; color: var(--primary); line-height: 1; }
.logo-text .sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.2em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: color 0.2s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--primary); transform: scaleX(0); transition: transform 0.2s;
}
nav a:hover, nav a.active { color: var(--primary); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }

.cart-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 50%;
  transition: background 0.2s;
  color: var(--text);
}
.cart-btn:hover { background: #f0e8df; }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--primary); color: white;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(230,92,0,0.08); color: var(--primary); }

/* ===== MAIN ===== */
main { padding-top: 72px; min-height: 80vh; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  height: calc(100vh - 72px); min-height: 480px;
}
.hero-slides { height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.2));
}
.hero-content {
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 6%; max-width: 580px; color: white;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 14px;
}
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.15; margin-bottom: 16px; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 30px; max-width: 440px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: white;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,92,0,0.4); color: white; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: white;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; background: transparent; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }

.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; width: 100%; justify-content: space-between;
  padding: 0 16px; pointer-events: none;
}
.hero-nav button {
  pointer-events: all;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  border: none; color: white; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.3rem; cursor: pointer;
  transition: background 0.2s;
}
.hero-nav button:hover { background: rgba(255,255,255,0.4); }

.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 99px;
  border: none; background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s;
}
.hero-dots button.active { background: var(--primary); width: 28px; }

/* ===== SECTION STYLES ===== */
section { padding: 72px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text); margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }

/* ===== PRODUCT GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.2), transparent); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: white;
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 99px;
}
.rating-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  font-size: 0.75rem; font-weight: 600; padding: 3px 8px; border-radius: 99px;
  display: flex; align-items: center; gap: 3px; color: var(--text);
}
.rating-badge::before { content: '★'; color: #f5a623; }
.product-card-body { padding: 16px; }
.product-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.product-card-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.product-weight { font-size: 0.72rem; color: var(--text-muted); }
.add-cart-btn {
  background: var(--primary); color: white;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.2s, transform 0.2s;
}
.add-cart-btn:hover { background: var(--primary-dark); transform: scale(1.04); }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative; cursor: pointer;
  height: 160px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-card:hover img { transform: scale(1.1); }
.category-card .cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.15));
  display: flex; align-items: flex-end; padding: 14px;
}
.category-card .cat-overlay span { color: white; font-weight: 700; font-size: 0.92rem; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

/* ===== FESTIVAL BANNER ===== */
.festival-banner {
  background: linear-gradient(135deg, #e65c00 0%, #b71c1c 100%);
  border-radius: 24px;
  padding: 60px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  margin: 0 24px;
}
.festival-banner::before {
  content: '🪔🪔🪔🪔🪔';
  position: absolute; top: -10px; left: 0; right: 0;
  text-align: center; font-size: 3rem; opacity: 0.08;
  letter-spacing: 20px;
}
.festival-text .tag { color: #f5c542; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.festival-text h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.festival-text p { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 440px; }
.btn-gold {
  background: #f5c542; color: #2d1a0e;
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; display: inline-block;
}
.btn-gold:hover { background: #f5d96a; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,197,66,0.4); color: #2d1a0e; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  text-align: center; transition: box-shadow 0.25s, transform 0.25s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
  width: 60px; height: 60px; background: rgba(230,92,0,0.1);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 64px 24px;
  text-align: center; color: white;
}
.page-hero .eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.82); margin-top: 10px; font-size: 1.05rem; }

/* ===== SHOP PAGE ===== */
.shop-controls { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; align-items: center; }
.search-box {
  flex: 1; min-width: 220px; position: relative;
}
.search-box input {
  width: 100%; padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card); font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s;
}
.search-box input:focus { outline: none; border-color: var(--primary); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1rem; }
.product-count { font-size: 0.875rem; color: var(--text-muted); white-space: nowrap; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-tab {
  padding: 8px 18px; border-radius: 99px;
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--card); color: var(--text-muted);
  transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== PRODUCT DETAIL ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-img .cat-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary); color: white; padding: 6px 14px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600;
}
.product-stars { display: flex; gap: 4px; align-items: center; margin-bottom: 14px; }
.product-stars .stars { color: #f5a623; font-size: 1.1rem; }
.product-stars span { color: var(--text-muted); font-size: 0.85rem; margin-left: 6px; }
.product-detail-info h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 6px; }
.product-weight-badge { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
.product-detail-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
.product-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

.qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; font-size: 1.1rem; color: var(--text-muted);
  transition: background 0.2s;
}
.qty-btn:hover { background: #f0e8df; }
.qty-val { padding: 0 18px; font-weight: 600; font-size: 1rem; color: var(--text); }
.qty-total { color: var(--text-muted); font-size: 0.9rem; }
.qty-total strong { color: var(--text); }

.add-cart-large {
  width: 100%; background: var(--primary); color: white;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 16px; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}
.add-cart-large:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(230,92,0,0.35); }

.product-features {
  margin-top: 20px; padding: 16px; background: rgba(230,92,0,0.06);
  border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--text-muted);
}

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-item {
  display: flex; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 14px;
}
.cart-item img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h3 { font-size: 1rem; margin-bottom: 4px; }
.cart-item-info .weight { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { color: var(--primary); font-weight: 700; font-size: 1rem; margin-top: 4px; }
.cart-item-controls { display: flex; align-items: center; gap: 12px; }
.qty-mini { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); }
.qty-mini button { width: 32px; height: 32px; background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--text-muted); transition: background 0.2s; }
.qty-mini button:hover { background: #f0e8df; }
.qty-mini span { padding: 0 10px; font-weight: 600; font-size: 0.9rem; }
.remove-btn { background: none; border: none; cursor: pointer; color: var(--accent); font-size: 1.2rem; transition: transform 0.2s; }
.remove-btn:hover { transform: scale(1.2); }
.item-total { font-weight: 700; color: var(--text); white-space: nowrap; }

.order-summary {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  position: sticky; top: 88px;
}
.order-summary h2 { font-size: 1.3rem; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; }
.summary-row .label { color: var(--text-muted); }
.summary-total { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); font-weight: 700; font-size: 1.1rem; margin-top: 6px; }
.summary-total .price { color: var(--primary); }
.checkout-btn {
  width: 100%; background: var(--primary); color: white;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 15px; font-size: 1rem; font-weight: 700;
  margin-top: 20px; transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.checkout-btn:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(230,92,0,0.35); }
.empty-cart { text-align: center; padding: 80px 24px; }
.empty-cart .icon { font-size: 4rem; margin-bottom: 16px; }
.empty-cart h2 { font-size: 1.5rem; margin-bottom: 8px; }
.empty-cart p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.form-card h2 { font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; color: var(--text); transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--primary); }
.form-group input.error { border-color: var(--accent); }
.form-error { font-size: 0.78rem; color: var(--accent); margin-top: 4px; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border: 2px solid var(--primary);
  border-radius: var(--radius-sm); background: rgba(230,92,0,0.04);
  cursor: pointer;
}
.payment-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--primary); background: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.payment-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: white; }
.payment-option .payment-info strong { display: block; font-size: 0.9rem; color: var(--text); }
.payment-option .payment-info span { font-size: 0.78rem; color: var(--text-muted); }

.place-order-btn {
  width: 100%; background: var(--primary); color: white;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 16px; font-size: 1rem; font-weight: 700; margin-top: 24px;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}
.place-order-btn:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(230,92,0,0.35); }

/* ===== ORDER MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  z-index: 9000; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius);
  padding: 40px; max-width: 440px; width: 100%;
  text-align: center; animation: popIn 0.4s ease;
}
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-box h2 { font-size: 1.6rem; color: var(--text); margin-bottom: 8px; }
.modal-box p { color: var(--text-muted); margin-bottom: 16px; }
.modal-order-id { background: rgba(230,92,0,0.08); padding: 12px 24px; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 20px; }
.modal-order-id .label { font-size: 0.78rem; color: var(--text-muted); }
.modal-order-id .id { font-size: 1.4rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', serif; }
.modal-close-btn {
  width: 100%; background: var(--primary); color: white;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 14px; font-size: 1rem; font-weight: 700;
  font-family: 'Poppins', sans-serif; transition: background 0.2s;
}
.modal-close-btn:hover { background: var(--primary-dark); }

/* ===== ABOUT ===== */
.about-hero-img { width: 100%; height: 320px; object-fit: cover; }
.stats-bar { background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 36px 24px; max-width: 1200px; margin: 0 auto; text-align: center; gap: 24px; }
.stat-item .val { font-size: 2.2rem; font-weight: 800; color: white; font-family: 'Playfair Display', serif; }
.stat-item .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 4px; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story img { border-radius: var(--radius); width: 100%; height: 420px; object-fit: cover; }
.about-story-text .eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.about-story-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.about-story-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }
.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-card-icon { font-size: 2rem; width: 56px; height: 56px; background: rgba(230,92,0,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.contact-card a { color: var(--primary); transition: color 0.2s; }
.contact-card a:hover { color: var(--primary-dark); }

/* ===== FOOTER ===== */
footer { background: var(--text); color: rgba(255,255,255,0.85); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand .brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-logo .icon { font-size: 1.5rem; }
.footer-brand .brand-logo .name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); font-weight: 800; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 16px; font-family: 'Playfair Display', serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: flex; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .festival-banner { padding: 40px 28px; flex-direction: column; text-align: center; }
  .festival-text p { max-width: none; }
}
@media (max-width: 600px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}

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