/* ================================================
   AI CRACKERS — Bright Festive Theme (Logo-Driven)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Exo+2:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

/* ===== TOKENS ===== */
:root {
  --orange: #f7941d;
  --orange-light: #ffaa42;
  --orange-dark: #cc7000;
  --gold: #ffd400;
  --gold-light: #ffe566;
  --gold-dark: #b39500;
  --red: #e8262b;
  --green: #059669;
  --wa-green: #25D366;

  --bg: #FFFDF9;
  --bg-soft: #FFF7ED;
  --bg-muted: #FEF3C7;
  --bg-section: #FAF7F2;

  --text: #1E160E;
  --text-sub: #54463A;
  --text-muted: #807163;
  --border: rgba(234, 88, 12, 0.12);
  --border-strong: rgba(234, 88, 12, 0.25);

  --shadow-sm: 0 2px 8px rgba(180, 80, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(180, 80, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(180, 80, 0, 0.14);
  --shadow-card: 0 10px 30px rgba(249, 115, 22, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);

  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-border: rgba(249, 115, 22, 0.15);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --nav-h: 90px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size:16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
p { margin-bottom: 1rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Exo 2', sans-serif; font-style: italic; line-height: 1.25; margin-bottom: 0.75rem; }
img { max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }
input, select, textarea { font-family:inherit; }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--orange), var(--orange-dark)); border-radius:3px; }

/* ===== CUSTOM CURSOR ===== */
@media (min-width: 900px) {
  body { cursor: none; }
  a, button, input, select, textarea, .cat-chip, .qty-btn, .ci-btn, .wishlist-btn { cursor: none !important; }
}

.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 99999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--orange);
  box-shadow: 0 0 10px var(--orange), 0 0 20px var(--gold);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(247, 148, 29, 0.5);
  box-shadow: 0 0 15px rgba(247, 148, 29, 0.2);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}
.cursor-outline.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(247, 148, 29, 0.1);
  border-color: rgba(247, 148, 29, 0.9);
}
@media (max-width: 899px) {
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* Click Spark Effect (Mobile & Desktop) */
.mini-spark {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  animation: spark-fly 0.6s cubic-bezier(0.1, 1, 0.5, 1) forwards;
}
@keyframes spark-fly {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity: 0; }
}

/* ===== GLOBAL ANIMATIONS ===== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 81, 47, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 81, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 81, 47, 0); }
}
.fade-up-element { opacity: 0; transform: translateY(24px); transition: var(--transition); }
.fade-up-element.in-view { opacity: 1; transform: translateY(0); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
  background-size: 200% 100%;
  animation: grad-move 4s linear infinite;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.announcement-track {
  display: flex;
  gap: 0;
  animation: marquee-ann 25s linear infinite;
  white-space: nowrap;
}
.announcement-track span {
  padding: 0 36px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
}
.ann-close {
  position: absolute; right:16px; top:50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25); border:none; color:white;
  width:24px; height:24px; border-radius:50%;
  font-size:0.75rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition: var(--transition);
}
.ann-close:hover { background: rgba(255,255,255,0.4); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(247, 148, 29, 0.3);
  box-shadow: 0 4px 20px rgba(247, 148, 29, 0.15);
  transition: var(--transition);
}
.navbar.elevated {
  box-shadow: 0 4px 25px rgba(249,115,22,0.25);
  border-bottom: 2px solid rgba(247, 148, 29, 0.6);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand */
.brand {
  display: flex; align-items:center; gap:10px;
  flex-shrink: 0; text-decoration:none;
  height: 100%;
}
.brand-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.brand-logo-img {
  height: 100%;
  max-height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.4);
}
.brand:hover .brand-logo { transform: scale(1.04); }
.brand-text { display:flex; flex-direction:column; line-height:1.1; }
.brand-name {
  font-size:1.1rem; font-weight:800; color:#ffffff;
  background: linear-gradient(135deg, #EA6C0A, #F59E0B);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.brand-tag { font-size:0.6rem; color:#b3b3b3; font-weight:600; text-transform:uppercase; letter-spacing:2px; }

/* Nav Menu */
.nav-menu {
  display:flex; align-items:center; gap:4px; margin-left:auto;
}
.nav-link {
  display:flex; align-items:center; gap:4px;
  padding:8px 14px; border-radius:var(--radius-xs);
  font-size:0.88rem; font-weight:600; color:#e0e0e0;
  transition: var(--transition); white-space:nowrap;
}
.nav-link:hover, .nav-link.active { color:var(--orange); background:rgba(255,255,255,0.08); }
.nav-link svg { transition: var(--transition); }

/* Dropdown */
.has-dropdown { position:relative; }
.dropdown-menu {
  position:absolute; top:calc(100% + 8px); left:0;
  background:#14141c; border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius); padding:8px;
  min-width:220px;
  box-shadow: var(--shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(-10px);
  transition: var(--transition);
  display:grid; grid-template-columns:1fr 1fr; gap:2px;
}
.has-dropdown:hover .dropdown-menu {
  opacity:1; visibility:visible; transform:translateY(0);
}
.has-dropdown:hover .nav-link svg { transform:rotate(180deg); }
.dropdown-menu a {
  display:block; padding:8px 12px;
  font-size:0.82rem; font-weight:500; color:#e0e0e0;
  border-radius:var(--radius-xs); transition:var(--transition);
  white-space:nowrap;
}
.dropdown-menu a:hover { background:rgba(255,255,255,0.05); color:var(--orange); }

/* Nav Actions */
.nav-actions { display:flex; align-items:center; gap:8px; margin-left:16px; flex-shrink:0; }
.nav-search-btn, .cart-btn {
  width:40px; height:40px; border-radius:var(--radius-xs);
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.1);
  color:#e0e0e0; display:flex; align-items:center; justify-content:center;
  transition:var(--transition); position:relative;
}
.nav-search-btn:hover, .cart-btn:hover { background:rgba(255,255,255,0.15); color:var(--orange); border-color:var(--orange); }
.cart-count {
  position:absolute; top:-6px; right:-6px;
  background:var(--orange); color:white; font-size:0.65rem;
  font-weight:700; width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:2px solid white;
}
.nav-order-btn {
  background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  color:white; padding:10px 22px; border-radius:50px;
  font-size:0.85rem; font-weight:700; transition:var(--transition);
  box-shadow: 0 0 15px rgba(247, 148, 29, 0.6);
}
.nav-order-btn:hover { transform:translateY(-1px); box-shadow: 0 0 25px rgba(247, 148, 29, 0.9); }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:8px;
}
.hamburger span {
  display:block; width:22px; height:2px;
  background:#ffffff; border-radius:2px;
  transition:var(--transition);
}
.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); }

/* Search expand */
.search-expand {
  position:absolute; top:100%; left:0; right:0;
  background:white; border-bottom:1px solid var(--border);
  padding:16px 24px; z-index:99;
  transform:translateY(-10px); opacity:0; pointer-events:none;
  transition:var(--transition);
  box-shadow:0 8px 30px rgba(0,0,0,0.1);
}
.search-expand.open { transform:translateY(0); opacity:1; pointer-events:all; }
.search-expand-inner {
  max-width:600px; margin:0 auto;
  display:flex; align-items:center; gap:12px;
  background:var(--bg-soft); border:1.5px solid var(--border-strong);
  border-radius:50px; padding:10px 20px;
}
.search-expand-inner input {
  flex:1; background:none; border:none; outline:none;
  font-size:0.95rem; color:var(--text);
}
.search-expand-inner input::placeholder { color:var(--text-muted); }
.search-expand-inner button {
  background:none; border:none; color:var(--text-muted);
  font-size:1rem; cursor:pointer; transition:var(--transition);
}
.search-expand-inner button:hover { color:var(--orange); }
.search-results {
  max-width:600px; margin:12px auto 0;
  background:white; border:1px solid var(--border);
  border-radius:var(--radius-sm); overflow:hidden;
}
.search-result-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 16px; cursor:pointer; transition:var(--transition);
  border-bottom:1px solid var(--border);
}
.search-result-item:last-child { border-bottom:none; }
.search-result-item:hover { background:var(--bg-soft); }
.sri-name { font-size:0.88rem; font-weight:600; }
.sri-price { font-size:0.88rem; font-weight:700; color:var(--orange); }
.sri-cat {
  font-size:0.7rem; color:var(--text-muted);
  background:var(--bg-muted); padding:2px 8px; border-radius:20px; margin-top:2px;
}

/* ===== CONTAINER ===== */
.container { max-width:1320px; margin:0 auto; padding:0 24px; }

/* ===== SECTION LABELS & HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-label {
  display:inline-block;
  background:var(--bg-muted); color:var(--orange-dark);
  font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:2px;
  padding:6px 16px; border-radius:50px; margin-bottom:16px;
  border:1px solid var(--border-strong);
}
.section-title { font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:800; line-height:1.25; margin-bottom:14px; color:var(--text); }
.accent-text {
  background:linear-gradient(135deg, var(--orange), var(--gold-dark));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.section-sub { color:var(--text-sub); font-size:1.05rem; line-height:1.7; margin-bottom: 0; }

/* ===== HERO (WINDOW FIT & ANIMATED SHOWCASE) ===== */
.hero {
  width: 100%;
  background: linear-gradient(160deg, #FFFDF9 0%, #FFF7ED 50%, #FEF3E2 100%);
  padding: calc(var(--nav-h) - 10px) 0 0;
  overflow: hidden;
  position: relative;
  height: calc(100vh - var(--nav-h));
  max-height: 740px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle at 85% 15%, rgba(249,115,22,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 15% 85%, rgba(245,158,11,0.1) 0%, transparent 50%);
}

.hero-content {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 32px 20px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg, #FFF7ED, #FEF3C7);
  border:1px solid var(--border-strong);
  color:var(--orange-dark); font-size:0.75rem; font-weight:800;
  padding:5px 16px; border-radius:50px; margin-bottom:10px;
  box-shadow:var(--shadow-sm); letter-spacing:0.5px;
}

.badge-dot {
  width:8px; height:8px; background:var(--green); border-radius:50%;
  animation:pulse-dot 2s ease-in-out infinite;
}

/* ===== HERO OFFER FOCUS BADGE ===== */
.hero-offer-focus {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #FFF5EA 0%, #FEF3C7 100%);
  border: 2px solid rgba(249, 115, 22, 0.35);
  border-radius: 16px;
  padding: 10px 18px;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12);
  position: relative;
  overflow: hidden;
  animation: pulse-border 3s infinite ease-in-out;
}
.hero-offer-sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  line-height: 1;
}
.offer-prefix { font-size: 0.6rem; font-weight: 800; letter-spacing: 1px; opacity: 0.9; }
.offer-num { font-size: 1.7rem; font-weight: 900; letter-spacing: -0.5px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.offer-suffix { font-size: 0.65rem; font-weight: 800; letter-spacing: 1.2px; }
.hero-offer-details { display: flex; flex-direction: column; gap: 2px; }
.offer-title { font-size: 1rem; font-weight: 900; color: #B91C1C; letter-spacing: -0.2px; }
.offer-subtitle { font-size: 0.76rem; font-weight: 600; color: var(--text-sub); }

/* Hero Brand Card */
.hero-brand-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 2px;
  padding: 8px 16px 8px 8px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
  transition: var(--transition);
}
.hero-brand-card:hover {
  box-shadow: 0 8px 24px rgba(249,115,22,0.18);
  transform: translateY(-2px);
  border-color: var(--orange);
}
.hbn-ai-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.hbn-ai-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-brand-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-brand-name {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.hbn-sivakasi {
  font-size: 1.1rem;
  font-weight: 800;
  color: #CC1200;
  letter-spacing: -0.3px;
}
.hbn-crackers {
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}
.hero-brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 12px;
  color: var(--text);
}
.headline-highlight {
  background:linear-gradient(135deg, var(--orange), var(--gold-dark));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-desc { color:var(--text-sub); font-size:0.92rem; margin-bottom:18px; max-width:500px; line-height:1.55; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
.cta-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  color:white; padding:11px 26px; border-radius:50px;
  font-size:0.9rem; font-weight:800; transition:var(--transition);
  box-shadow:0 6px 18px rgba(249,115,22,0.35);
  position: relative; overflow: hidden;
}
.cta-primary::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(30deg); animation: shimmerSweep 4s infinite;
}
.cta-primary:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(249,115,22,0.45); }
.cta-primary svg { transition:var(--transition); }
.cta-primary:hover svg { transform:translateX(4px); }
.cta-secondary {
  display:inline-flex; align-items:center;
  background:#FFFFFF; color:var(--text); padding:11px 24px; border-radius:50px;
  font-size:0.9rem; font-weight:700; transition:var(--transition);
  border:1.5px solid var(--border); box-shadow:var(--shadow-sm);
}
.cta-secondary:hover { border-color:var(--orange); color:var(--orange); background:var(--bg-soft); }

.hero-trust { display:flex; flex-wrap:wrap; gap:16px; }
.trust-item { display:flex; align-items:center; gap:6px; font-size:0.8rem; font-weight:700; color:var(--text-sub); }

/* Hero Right Showcase */
.hero-right { position:relative; display:flex; align-items:center; justify-content:center; width:100%; z-index: 2; }
.hero-showcase-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.hero-image-card {
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(249,115,22,0.14), 0 4px 14px rgba(0,0,0,0.04);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  animation: float-card 4s ease-in-out infinite;
}
.hero-image-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 24px 50px rgba(249,115,22,0.22);
}
.hic-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.hero-pack-img {
  width: 100%;
  max-height: 185px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(249, 115, 22, 0.22));
  transition: transform 0.5s ease;
}
.hero-image-card:hover .hero-pack-img {
  transform: scale(1.08) rotate(2deg);
}
.hic-overlay {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hic-overlay span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-sub);
}

.glow-90 {
  display: inline-block;
  font-size: 2.1rem !important;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-pulse 2.5s infinite ease-in-out;
}

/* Floating Pills Positioned Cleanly Outside Card */
.floating-pill {
  position: absolute;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(180, 80, 0, 0.12);
  z-index: 3;
  animation: float-pill 3.5s ease-in-out infinite;
}
.pill-top-left { top: -14px; left: -16px; animation-delay: 0s; }
.pill-top-right { top: 25%; right: -20px; animation-delay: 0.8s; }
.pill-bottom-left { bottom: 25%; left: -20px; animation-delay: 1.5s; }
.pill-bottom-right { bottom: -14px; right: -12px; animation-delay: 2.2s; }

.sparkle {
  position:absolute; color:var(--gold); font-size:1.3rem;
  animation:sparkle-anim 2s ease-in-out infinite;
}
.s1 { top:5%; right:15%; animation-delay:0s; }
.s2 { top:55%; right:5%; animation-delay:0.7s; }
.s3 { bottom:10%; left:10%; animation-delay:1.4s; }
.s4 { top:30%; left:0%; animation-delay:2.1s; }

/* Hero Stats */
.hero-stats {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  gap: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
.stat-item { text-align:center; padding:0 36px; }
.stat-val { display:block; font-size:1.45rem; font-weight:900; background:linear-gradient(135deg, var(--orange), var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height: 1.1; }
.stat-lbl { font-size:0.68rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:1px; }
.stat-sep { width:1px; height:32px; background:var(--border); flex-shrink:0; }

/* ===== CATEGORY CHIPS ===== */
.cat-quick { padding:24px 0; border-bottom:1px solid var(--glass-border); background:var(--bg); position:sticky; top:var(--nav-h); z-index:80; }
.cat-scroll-wrap { overflow-x:auto; scrollbar-width:none; }
.cat-scroll-wrap::-webkit-scrollbar { display:none; }
.cat-chips { display:flex; gap:8px; padding-bottom:4px; min-width:max-content; }
.cat-chip {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 18px; border-radius:50px; font-size:0.82rem; font-weight:600;
  background:var(--bg-soft); border:1.5px solid var(--border); color:var(--text-sub);
  cursor:pointer; transition:var(--transition); white-space:nowrap;
}
.cat-chip:hover { border-color:var(--orange); color:var(--orange); background:var(--bg-muted); }
.cat-chip.active {
  background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color:var(--orange); color:white;
  box-shadow:0 4px 14px rgba(249,115,22,0.3);
}

/* ===== OFFERS ===== */
.offers-section { padding:90px 0; background:var(--bg-section); }
.offers-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:24px; margin-top:44px; }
.offer-card {
  background:var(--glass-bg); backdrop-filter: blur(10px); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:36px 28px; position:relative;
  transition:var(--transition); display: flex; flex-direction: column; align-items: flex-start;
}
.offer-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--orange); }
.offer-main {
  background:linear-gradient(145deg, #FFF7ED, #FEF3E2);
  border:2px solid rgba(249,115,22,0.3);
}
.offer-badge {
  position:absolute; top:18px; right:18px;
  background:var(--orange); color:white;
  font-size:0.7rem; font-weight:700; padding:4px 14px; border-radius:50px;
}
.offer-icon { font-size:2.5rem; margin-bottom:16px; display:block; }
.offer-card h3 { font-size:1.15rem; font-weight:800; margin-bottom:8px; }
.offer-card p { font-size:0.88rem; color:var(--text-sub); margin-bottom:24px; line-height:1.7; flex:1; }
.offer-btn {
  display:inline-block; background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  color:white; padding:12px 24px; border-radius:50px;
  font-size:0.85rem; font-weight:700; transition:var(--transition);
  box-shadow:0 4px 12px rgba(249,115,22,0.25); margin-top:auto;
}
.offer-btn:hover { transform:translateY(-1px); box-shadow:0 6px 18px rgba(249,115,22,0.4); }
.offer-btn-outline {
  background:transparent; color:var(--orange);
  border:1.5px solid var(--orange); box-shadow:none;
}
/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--text-sub);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.back-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  transform: translateX(-4px);
}
.back-btn svg {
  transition: var(--transition);
  stroke: currentColor;
}

/* ===== PRODUCTS ===== */
.products-section { padding:80px 0; }
.products-header {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:32px; flex-wrap:wrap;
}
.product-controls { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.product-search {
  display:flex; align-items:center; gap:10px;
  background:var(--glass-bg); border:1.5px solid var(--glass-border);
  border-radius:50px; padding:10px 18px; min-width:260px;
  transition:var(--transition);
}
.product-search:focus-within { border-color:var(--orange); box-shadow:0 0 0 3px rgba(249,115,22,0.1); }
.product-search svg { color:var(--text-muted); flex-shrink:0; }
.product-search input { flex:1; border:none; outline:none; font-size:0.88rem; color:var(--text); background:none; }
.product-search input::placeholder { color:var(--text-muted); }
.sort-wrap select {
  background:var(--glass-bg); border:1.5px solid var(--glass-border); border-radius:50px;
  padding:10px 18px; font-size:0.85rem; color:var(--text-sub);
  outline:none; cursor:pointer; transition:var(--transition);
  font-weight:500;
}
.sort-wrap select:focus { border-color:var(--orange); }
.sort-wrap select option { background: var(--bg); color: var(--text); }

/* Products Grid */
.products-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:24px;
}
.product-card {
  background: #FFFBF5;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(247, 148, 29, 0.2);
}
.wishlist-btn {
  position:absolute; top:12px; right:12px; z-index:10;
  width:44px; height:44px; border-radius:50%;
  background: #FFFFFF; border:none;
  color:#a0a0a0; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.wishlist-btn:hover { color:var(--orange); transform:scale(1.1); box-shadow: 0 6px 14px rgba(0,0,0,0.1); }
.wishlist-btn.active { color:var(--red); fill: var(--red); background:#fff0f0; }
.product-card-top {
  background: #F0E4D3;
  padding: 24px 16px;
  text-align:center; position:relative;
  border-radius:16px 16px 0 0;
  overflow:hidden;
}
.product-img {
  width:100%; height:160px; object-fit:contain; display:block; padding: 0;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative; z-index: 1;
}
.product-card:hover .product-img { transform:scale(1.05); }
.product-cat-tag {
  position:absolute; top:12px; left:12px; transform:none;
  display:inline-block; font-size:0.65rem; font-weight:800;
  text-transform:uppercase; letter-spacing:1px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--gold) 100%);
  color:white; padding:4px 12px;
  border-radius:50px; box-shadow:0 4px 10px rgba(247, 148, 29, 0.3);
  white-space: nowrap; max-width: 70%; overflow: hidden; text-overflow: ellipsis;
  z-index: 2;
}
.product-card-body { padding:20px 16px; flex:1; display:flex; flex-direction:column; background: transparent; justify-content: space-between; }
.product-name { font-size:1.05rem; font-weight:800; margin-bottom:6px; color:#12121a; line-height:1.3; font-family: 'Outfit', sans-serif; }
.product-unit { font-size:0.75rem; color:#888; margin-bottom:12px; }
.product-price-row { display:flex; align-items:baseline; gap:8px; margin-bottom:16px; margin-top:2px; flex-wrap:wrap; }
.product-price {
  font-size:1.5rem; font-weight:900;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: 'Outfit', sans-serif;
}
.product-mrp { font-size: 0.85rem; color: #a0a0a0; text-decoration: line-through; font-weight: 600; display: inline-block; }
.product-discount { font-size: 0.75rem; background: #e8262b; color: white; padding: 2px 6px; border-radius: 4px; font-weight: 700; display: inline-block; }
.product-card-actions { margin-top:auto; display:flex; flex-direction:column; gap:10px; }
.add-cart-btn, .view-cart-btn {
  width:100%; flex:1; background:linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--gold) 100%);
  color:white; border:none; border-radius:50px;
  padding:12px 18px; font-size:0.9rem; font-weight:800;
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:all 0.3s ease; box-shadow:0 4px 15px rgba(247, 148, 29, 0.3);
  cursor: pointer;
  min-height: 44px;
}
.add-cart-btn:hover, .view-cart-btn:hover { box-shadow:0 6px 20px rgba(247, 148, 29, 0.4); transform:translateY(-2px); }
.add-cart-btn:active, .view-cart-btn:active { transform:scale(0.97); }
.cart-actions-row {
  display:flex; align-items:center; justify-content:space-between; width: 100%;
  background: #FFF1E0; border-radius: 50px; padding: 4px; gap: 8px; border: 1px solid rgba(247, 148, 29, 0.15);
}
.qty-btn {
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg, var(--orange), var(--gold)); border:none; flex-shrink: 0;
  color:#fff; font-size:1.2rem; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition); cursor:pointer;
  box-shadow: 0 2px 6px rgba(247,148,29,0.3);
}
.qty-btn:hover { background:var(--red); transform:scale(1.1); color:#fff; }
.qty-display {
  flex: 1; text-align:center;
  font-size:1rem; font-weight:800; color:#12121a;
  min-width: 30px;
}
.view-cart-btn svg { transition:var(--transition); }
.view-cart-btn:hover svg { stroke:white; }
/* Load more */
.load-more-wrap { text-align:center; margin-top:48px; }
.load-more-btn {
  background:var(--glass-bg); border:2px solid var(--orange); color:var(--orange);
  padding:14px 40px; border-radius:50px; font-size:0.9rem; font-weight:700;
  transition:var(--transition);
}
.load-more-btn:hover { background:var(--orange); color:white; box-shadow:0 6px 20px rgba(249,115,22,0.3); }

/* No results */
.no-results-card {
  grid-column:1/-1; text-align:center; padding:80px 20px;
  color:var(--text-sub);
}
.no-results-card .nr-icon { font-size:3rem; display:block; margin-bottom:16px; }
.no-results-card h3 { font-size:1.2rem; font-weight:700; margin-bottom:8px; }

/* ===== HOW TO ORDER ===== */
.how-to-order { padding:90px 0; background:var(--bg-section); }
.how-to-order .section-header { text-align:center; margin-bottom:52px; }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.step-card {
  background:var(--glass-bg); backdrop-filter: blur(10px); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:36px 26px; text-align:center;
  position:relative; transition:var(--transition);
}
.step-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--orange); }
.step-card::before {
  content:''; position:absolute; top:0; left:0;
  width:100%; height:3px;
  background:linear-gradient(90deg, var(--orange), var(--gold));
  border-radius:var(--radius) var(--radius) 0 0;
  opacity:0; transition:var(--transition);
}
.step-card:hover::before { opacity:1; }
.step-number {
  font-size:3rem; font-weight:900; color:rgba(249,115,22,0.14);
  line-height:1; margin-bottom:12px; font-family:'Playfair Display', serif;
}
.step-icon { font-size:2.4rem; display:block; margin-bottom:18px; }
.step-card h3 { font-size:1rem; font-weight:700; margin-bottom:10px; }
.step-card p { font-size:0.85rem; color:var(--text-sub); line-height:1.65; margin-bottom:0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding:90px 0; }
.testimonials-section .section-label, .testimonials-section .section-title { text-align:center; display:block; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
.testimonial-card {
  background:var(--glass-bg); backdrop-filter: blur(10px); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:36px;
  transition:var(--transition);
}
.testimonial-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.testimonial-card.featured {
  background:linear-gradient(145deg, var(--bg-soft), var(--bg-muted));
  border:2px solid var(--orange);
}
.stars { color:var(--gold); font-size:1.1rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-card p { font-size:0.88rem; color:var(--text-sub); 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:linear-gradient(135deg, var(--orange), var(--gold));
  color:white; font-weight:800; display:flex; align-items:center; justify-content:center;
}
.reviewer strong { display:block; font-size:0.88rem; }
.reviewer small { font-size:0.75rem; color:var(--text-muted); }

/* ===== CART ITEM IMAGE ===== */
.ci-img {
  width: 64px; height: 64px; object-fit: contain;
  background: #F0E4D3; padding: 6px;
  border-radius: 12px; flex-shrink: 0;
}

/* ===== CUSTOM MODAL ===== */
.custom-modal {
  position:fixed; top:50%; left:50%; transform:translate(-50%, -50%) scale(0.95);
  background:var(--bg); border:1px solid var(--glass-border); z-index:2000; width:90%; max-width:400px;
  border-radius:var(--radius); opacity:0; visibility:hidden;
  transition:var(--transition); box-shadow:var(--shadow-lg);
  overflow: hidden;
}
.custom-modal.open {
  opacity:1; visibility:visible; transform:translate(-50%, -50%) scale(1);
}
.custom-modal-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 24px; border-bottom:1px solid var(--border);
  background:linear-gradient(145deg, var(--bg-soft), var(--bg-muted));
}
.custom-modal-header h3 { font-size:1.1rem; font-weight:800; color:var(--text); margin:0; }
.custom-modal-body { padding:24px; }
.custom-modal-body p { font-size:0.9rem; color:var(--text-sub); margin-bottom:16px; }
.custom-modal-input {
  width:100%; padding:14px 16px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-size:1rem; outline:none;
  font-family:inherit; transition:var(--transition); margin-bottom:20px;
  color:var(--text);
}
.custom-modal-input:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(249,115,22,0.1); }
.custom-modal-btn {
  width:100%; background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  color:white; border:none; border-radius:50px; padding:14px;
  font-size:1rem; font-weight:800; cursor:pointer;
  transition:var(--transition); box-shadow:var(--shadow-md);
  display:flex; justify-content:center; align-items:center; gap:8px;
}
.custom-modal-btn:hover { box-shadow:0 6px 20px rgba(249,115,22,0.3); transform:translateY(-1px); }

/* ===== CONTACT ===== */
.contact-section { padding:80px 0; background:var(--bg-section); }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start; }
.contact-desc { color:var(--text-sub); font-size:0.95rem; line-height:1.7; margin-bottom:32px; }
.contact-features { display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.cf-item { display:flex; align-items:flex-start; gap:14px; }
.cf-icon { font-size:1.5rem; flex-shrink:0; }
.cf-item h4 { font-size:0.9rem; font-weight:700; margin-bottom:2px; }
.cf-item p { font-size:0.82rem; color:var(--text-sub); }
.whatsapp-contact-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--wa-green); color:white;
  padding:14px 28px; border-radius:50px;
  font-size:0.9rem; font-weight:700; transition:var(--transition);
  box-shadow:0 4px 20px rgba(37,211,102,0.35);
}
.whatsapp-contact-btn:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(37,211,102,0.45); }

.contact-phones { display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.phone-link {
  display:inline-flex; align-items:center; gap:10px;
  font-size:1rem; font-weight:700; color:var(--orange-dark);
  padding:12px 18px; border-radius:var(--radius-sm);
  background:var(--bg-muted); border:1.5px solid rgba(249,115,22,0.2);
  transition:var(--transition); text-decoration:none;
}
.phone-link:hover { background:var(--orange); color:white; border-color:var(--orange); transform:translateX(4px); }

/* Contact Form */
.contact-form-wrap {
  background:var(--glass-bg); backdrop-filter: blur(10px); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:40px;
  box-shadow:var(--shadow-card);
}
.contact-form-wrap h3 { font-size:1.3rem; font-weight:800; margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.form-group label { font-size:0.82rem; font-weight:700; color:var(--text-sub); }
.form-group label span { color:var(--red); }
.form-group input, .form-group select, .form-group textarea {
  background:var(--bg-soft); border:1.5px solid var(--border);
  border-radius:var(--radius-sm); padding:12px 14px;
  font-size:0.88rem; color:var(--text); outline:none; transition:var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--orange); box-shadow:0 0 0 3px rgba(249,115,22,0.1);
  background:var(--bg);
}
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--text-muted); }
.form-group textarea { resize:vertical; }
.form-submit-btn {
  width:100%; background:var(--wa-green); color:white;
  border:none; border-radius:var(--radius-sm);
  padding:14px; font-size:0.9rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:var(--transition); box-shadow:0 4px 14px rgba(37,211,102,0.3);
}
.form-submit-btn:hover { background:#20BD5A; transform:translateY(-1px); box-shadow:0 6px 20px rgba(37,211,102,0.45); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position:fixed; inset:0; background:rgba(30,22,14,0.35); z-index:300;
  opacity:0; pointer-events:none; transition:var(--transition);
  backdrop-filter:blur(3px);
}
.cart-overlay.open { opacity:1; pointer-events:all; }
.cart-sidebar {
  position:fixed; top:0; right:0; bottom:0; width:420px;
  background:#FFFFFF; z-index:301; border-left:none;
  transform:translateX(100%); transition:0.35s cubic-bezier(0.4,0,0.2,1);
  display:flex; flex-direction:column;
  box-shadow:-10px 0 50px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform:translateX(0); }
.cart-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 24px 16px 24px; border-bottom:1px solid rgba(0,0,0,0.05);
}
.cart-title { display:flex; align-items:center; gap:10px; font-size:1.2rem; font-weight:900; color:#12121a; }
.cart-close {
  width:36px; height:36px; border-radius:50%;
  background:rgba(0,0,0,0.04); border:none;
  color:#a0a0a0; font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all 0.3s ease; cursor:pointer;
}
.cart-close:hover { background:#fff0f0; color:var(--red); transform:rotate(90deg); }
.cart-items { flex:1; overflow-y:auto; padding:20px 24px; background: #FFFBF5; }
.cart-empty { text-align:center; padding:60px 0; }
.empty-icon { font-size:3.5rem; display:block; margin-bottom:12px; opacity:0.5; }
.cart-empty p { font-size:1.1rem; font-weight:800; color:#12121a; margin-bottom:4px; }
.cart-empty span { font-size:0.85rem; color:#888; }
.cart-item {
  display:flex; align-items:center; gap:14px;
  padding:12px; margin-bottom:12px;
  background:#FFFFFF; border:1px solid rgba(0,0,0,0.04);
  border-radius:16px; box-shadow:0 4px 12px rgba(0,0,0,0.03);
  animation:slide-in 0.25s ease;
}
.cart-item:last-child { margin-bottom:0; }

.ci-info { flex:1; min-width:0; }
.ci-name { font-size:0.95rem; font-weight:800; color:#12121a; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ci-unit { font-size:0.75rem; color:#888; }
.ci-price {
  font-size:1rem; font-weight:900; margin-top:6px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ci-controls { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.ci-btn {
  width:28px; height:28px; border-radius:50%;
  background:linear-gradient(135deg, var(--orange), var(--gold)); border:none;
  color:#fff; font-weight:900; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all 0.3s ease; cursor:pointer;
  box-shadow: 0 2px 6px rgba(247,148,29,0.3);
}
.ci-btn:hover { background:var(--red); transform:scale(1.1); color:#fff; }
.ci-btn.remove { background:#FFFBF5; color:#a0a0a0; box-shadow:none; font-size:0.9rem; margin-left: 8px; border: 1px solid rgba(0,0,0,0.05); }
.ci-btn.remove:hover { background:var(--red); color:white; border-color:var(--red); transform:scale(1.1); }
.ci-qty { min-width:20px; text-align:center; font-size:0.95rem; font-weight:800; color:#12121a; }

.cart-footer { padding:20px 24px 24px 24px; background:#FFFFFF; box-shadow:0 -10px 30px rgba(0,0,0,0.05); position:relative; z-index:2; }
.cart-summary { margin-bottom:20px; }
.summary-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; font-size:0.95rem; color:#555; }
.summary-row:last-child { font-size:1.2rem; font-weight:900; color:#12121a; }
.summary-row.total { border-top:1px dashed rgba(0,0,0,0.1); margin-top:8px; padding-top:16px; }
.summary-row.total span:last-child {
  font-size: 1.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.green { color:#25D366; font-weight:800; }
.whatsapp-order-btn {
  width:100%; background:linear-gradient(135deg, #25D366, #128C7E); color:white;
  border:none; border-radius:50px;
  padding:16px; font-size:1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center; gap:10px;
  transition:all 0.3s ease; margin-bottom:12px;
  box-shadow:0 4px 15px rgba(37,211,102,0.3); cursor:pointer;
}
.whatsapp-order-btn:hover { box-shadow:0 6px 20px rgba(37,211,102,0.5); transform:translateY(-2px); }
.clear-cart-btn {
  width:100%; background:transparent; border:1px solid rgba(0,0,0,0.1);
  color:#888; border-radius:50px;
  padding:12px; font-size:0.9rem; font-weight:700;
  transition:all 0.3s ease; cursor:pointer;
}
.clear-cart-btn:hover { border-color:var(--red); color:var(--red); background:#fff0f0; }

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  color: #e0e0e0;
  padding: 80px 0 0;
  border-top: none;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #e8262b, #f7941d, #ffd400);
  box-shadow: 0 0 15px rgba(247, 148, 29, 0.6);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; margin-bottom:64px; }

/* Footer Logo */
.footer-logo-wrap {
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(247, 148, 29, 0.3);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(247, 148, 29, 0.2);
  margin-bottom: 8px;
}
.footer-logo-img {
  display: block;
  width: 150px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.footer-desc { font-size:0.9rem; line-height:1.8; margin-top:24px; color:#b3b3b3; max-width:320px; }
.footer-social { margin-top:24px; display:flex; gap:12px; padding-left: 28px; }
.social-wa {
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; background:var(--wa-green); color:white;
  border-radius:50%; transition:var(--transition);
}
.social-wa:hover { transform:scale(1.15) translateY(-2px); box-shadow:0 8px 20px rgba(37,211,102,0.4); }
.social-call {
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; background:var(--orange); color:white;
  border-radius:50%; transition:var(--transition);
}
.social-call:hover { transform:scale(1.15) translateY(-2px); background:var(--orange-dark); box-shadow:0 8px 20px rgba(249,115,22,0.4); }
.footer-col h4 { font-size:0.95rem; font-weight:800; color:#ffffff; text-transform:uppercase; letter-spacing:1px; margin-bottom:24px; }
.footer-links { display:flex; flex-direction:column; gap:12px; }
.footer-links li a { font-size:0.9rem; color:#b3b3b3; transition:var(--transition); display:inline-flex; align-items:center; gap:8px; }
.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f7941d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='13 17 18 12 13 7'/%3E%3Cpolyline points='6 17 11 12 6 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: var(--transition);
  opacity: 0.8;
}
.footer-links li a:hover { color:var(--orange); transform:translateX(4px); }
.footer-links li a:hover::before {
  transform: translateX(3px);
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(247, 148, 29, 0.6));
}
.footer-features { display:flex; flex-direction:column; gap:14px; }
.footer-features li { display:flex; align-items:center; gap:10px; font-size:0.9rem; color:#b3b3b3; }
.feat-icon { font-size:1.1rem; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.1); padding:24px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-copyright { display:flex; align-items:center; gap:10px; flex-wrap:wrap; font-size:0.88rem; color:#b3b3b3; }
.designer-divider { color: var(--border-strong); font-weight: 300; }
.designer-credit {
  color: var(--orange-dark) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-seo-tags a { color:var(--text-muted); margin:0 6px; font-size:0.8rem; transition:var(--transition); }
.footer-seo-tags a:hover { color:var(--orange); }

/* ===== FAB WHATSAPP ===== */
.fab-whatsapp {
  position:fixed; bottom:32px; right:32px; z-index:200;
  width:58px; height:58px; background:var(--wa-green); color:white;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,0.4);
  transition:var(--transition); animation:float-card 4s ease-in-out infinite;
}
.fab-whatsapp svg { transition: var(--transition); }
.fab-whatsapp:hover { transform:scale(1.1); box-shadow:0 10px 32px rgba(37,211,102,0.55); }
.fab-tooltip {
  position:absolute; right:calc(100% + 12px); top:50%; transform:translateY(-50%);
  background:var(--text); color:white; font-size:0.75rem; font-weight:600;
  white-space:nowrap; padding:6px 12px; border-radius:var(--radius-xs);
  opacity:0; pointer-events:none; transition:var(--transition);
}
.fab-tooltip::after {
  content:''; position:absolute; left:100%; top:50%; transform:translateY(-50%);
  border:5px solid transparent; border-left-color:var(--text);
}
.fab-whatsapp:hover .fab-tooltip { opacity:1; }

/* Back to top */
.back-to-top {
  position:fixed; bottom:104px; right:36px; z-index:200;
  width:40px; height:40px; background:var(--bg); color:var(--orange);
  border:2px solid var(--orange); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition); opacity:0; pointer-events:none;
  box-shadow:var(--shadow-sm);
}
.back-to-top.visible { opacity:1; pointer-events:all; }
.back-to-top:hover { background:var(--orange); color:white; }

/* ===== TOAST ===== */
.toast {
  position:fixed; bottom:100px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--text); color:white;
  padding:12px 24px; border-radius:50px; font-size:0.85rem; font-weight:600;
  z-index:999; opacity:0; pointer-events:none; transition:0.3s ease;
  white-space:nowrap; box-shadow:0 4px 20px rgba(0,0,0,0.2);
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ===== MODAL ===== */
.modal-box {
  position:fixed; top:50%; left:50%; transform:translate(-50%, -50%) scale(0.95);
  background:var(--bg); z-index:301; width:90%; max-width:400px;
  border:1px solid var(--glass-border); border-radius:var(--radius); padding:24px;
  box-shadow:var(--shadow-lg); opacity:0; pointer-events:none; transition:var(--transition);
}
.modal-box.open { opacity:1; pointer-events:all; transform:translate(-50%, -50%) scale(1); }
.modal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.modal-header h3 { font-size:1.1rem; font-weight:800; }
.modal-body .form-group { margin-bottom:16px; }

/* ===== ANIMATIONS ===== */
@keyframes grad-move {
  0%{background-position:0% 50%} 100%{background-position:200% 50%}
}
@keyframes marquee-ann {
  from{transform:translateX(0)} to{transform:translateX(-50%)}
}
@keyframes float-card {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}
@keyframes float-pill {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)}
}
@keyframes shimmerSweep {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  30%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}
@keyframes sparkle-anim {
  0%,100%{opacity:0.3;transform:scale(0.8) rotate(0deg)}
  50%{opacity:1;transform:scale(1.2) rotate(20deg)}
}
@keyframes pulse-dot {
  0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.4)}
  50%{box-shadow:0 0 0 6px rgba(34,197,94,0)}
}
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 81, 47, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 14px rgba(255, 81, 47, 0.7)); transform: scale(1.05); }
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(249, 115, 22, 0.35); }
  50% { border-color: rgba(249, 115, 22, 0.7); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2); }
}

/* Accessibility reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== RESPONSIVE SPACING (MOBILE-FIRST) ===== */
@media(max-width:1100px) {
  .hero { height: auto; max-height: none; min-height: auto; padding-top: calc(var(--nav-h) - 10px); }
  .offers-grid { grid-template-columns:1fr 1fr; gap: 20px; }
  .steps-grid { grid-template-columns:repeat(2,1fr); gap: 20px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap: 40px; }
  .hero-content { grid-template-columns:1fr; text-align:center; gap: 28px; padding: 20px 24px 30px; }
  .hero-left { align-items: center; max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content:center; }
  .hero-trust { justify-content:center; }
  .hero-right { display:flex; margin-top: 10px; }
  .offers-section, .products-section, .how-to-order, .testimonials-section, .contact-section { padding: 60px 0; }
}
@media(max-width:900px) {
  .nav-menu, .nav-order-btn { display:none; }
  .hamburger { display:flex; }
  .nav-menu.open {
    display:flex; flex-direction:column;
    position:fixed; top:var(--nav-h); left:0; right:0;
    background:rgba(10, 10, 15, 0.98); backdrop-filter: blur(15px); border-bottom:1px solid rgba(247, 148, 29, 0.3);
    padding:20px 24px; gap:8px; z-index:99;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
  }
  .has-dropdown .dropdown-menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:1px solid var(--border); margin-top: 6px; }
  .contact-grid { grid-template-columns:1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns:1fr; gap: 20px; }
  .cart-sidebar { width:100%; max-width:420px; }
}
@media(max-width:680px) {
  :root { --nav-h: 74px; }
  .hero { height: auto; min-height: auto; max-height: none; padding-top: 10px; }
  .hero-banner-overlay { display: none; }
  .hero-content { padding: 16px 16px 24px; gap: 32px; }
  .offers-section, .products-section, .how-to-order, .testimonials-section, .contact-section { padding: 40px 0; }
  .nav-inner { padding: 0 12px; gap: 8px; justify-content: space-between; height: var(--nav-h); }
  .brand-logo { height: 44px; margin-left: 6px; }
  .brand-logo-img { max-height: 42px; transform: scale(1.3); transform-origin: left center; }
  .nav-actions { margin-left: 0; gap: 6px; }
  .nav-search-btn, .cart-btn { width: 34px; height: 34px; }
  .nav-search-btn svg, .cart-btn svg { width: 18px; height: 18px; }
  .hamburger { padding: 6px; }
  .cart-count { top: -5px; right: -5px; width: 16px; height: 16px; font-size: 0.6rem; }
  
  .fab-whatsapp { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }
  .back-to-top { width: 36px; height: 36px; bottom: 80px; right: 27px; }
  .back-to-top svg { width: 16px; height: 16px; }
  
  .floating-pill { font-size: 0.65rem; padding: 5px 12px; }
  .pill-top-left { top: -12px; left: -4px; }
  .pill-top-right { top: 20%; right: -4px; }
  .pill-bottom-left { bottom: 20%; left: -4px; }
  .pill-bottom-right { bottom: -12px; right: -4px; }
  .offers-grid { grid-template-columns:1fr; gap: 16px; }
  .steps-grid { grid-template-columns:1fr; gap: 16px; }
  .footer-grid { grid-template-columns:1fr; gap: 32px; text-align: center; }
  .footer-logo-wrap { margin: 0 auto 16px; width: fit-content; }
  .footer-address { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-address > div { justify-content: center; padding-left: 0 !important; }
  .footer-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; padding-left: 0; }
  .footer-links { align-items: center; }
  .footer-features { align-items: center; }
  .footer-features li { justify-content: center; }
  .form-row { grid-template-columns:1fr; gap: 14px; }
  .hero-stats { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
    padding: 24px 10px; 
  }
  .stat-item { width:100%; padding:0; display:flex; flex-direction:column; align-items:center; }
  .stat-sep { display:none; }
  .stat-val { font-size: 1.4rem; margin-bottom: 4px; }
  .stat-lbl { font-size: 0.72rem; }
  .products-header { flex-direction:column; align-items:stretch; gap: 14px; margin-bottom: 20px; }
  .product-controls { flex-direction:column; width: 100%; gap: 10px; }
  .product-search { min-width:unset; width: 100%; }
  .sort-wrap { width: 100%; }
  .sort-wrap select { width: 100%; }
  .contact-form-wrap { padding:24px 16px; }
  .footer-bottom { flex-direction:column; text-align:center; gap: 12px; }
  .footer-copyright { justify-content: center; font-size: 0.78rem; gap: 6px; flex-wrap: wrap; white-space: normal; }
  .designer-credit { border-left: none; padding-left: 0; margin-top: 0; width: auto; text-align: center; }
}
@media(max-width:480px) {
  .products-grid { grid-template-columns:repeat(2,1fr); gap: 8px; }
  .product-card { border-radius: 12px; }
  .product-card-top { padding: 12px 8px; border-radius: 12px 12px 0 0; }
  .product-img { height: 130px; }
  .product-cat-tag { top: 8px; left: 8px; font-size: 0.55rem; padding: 4px 8px; max-width: 85%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .wishlist-btn { width: 36px; height: 36px; top: 6px; right: 6px; }
  
  .product-card-body { padding: 12px 8px; }
  .product-name { font-size: 0.85rem; margin-bottom: 4px; line-height: 1.25; }
  .product-unit { font-size: 0.65rem; margin-bottom: 8px; }
  .product-price-row { margin-bottom: 12px; }
  .product-price { font-size: 1.15rem; }
  .product-mrp { font-size: 0.75rem; }
  .product-discount { font-size: 0.65rem; padding: 2px 4px; }
  
  .add-cart-btn, .view-cart-btn { padding: 8px 6px; font-size: 0.75rem; min-height: 44px; border-radius: 50px; }
  .add-cart-btn svg, .view-cart-btn svg { width: 14px; height: 14px; }
  .cart-actions-row { padding: 2px; gap: 4px; }
  .qty-btn { width: 40px; height: 40px; font-size: 1.1rem; }
  .qty-display { font-size: 0.9rem; min-width: 20px; }
  
  .hero-headline { font-size: 1.8rem; margin-bottom: 10px; }
  .hero-offer-focus { flex-direction: row; padding: 8px 12px; gap: 10px; }
  .hero-offer-sticker { padding: 4px 10px; }
  .offer-num { font-size: 1.4rem; }
}

@media(min-width:481px) and (max-width:768px) {
  .products-grid { grid-template-columns:repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
  .product-card-top { padding: 16px 12px; }
  .product-card-body { padding: 16px 12px; }
  .product-img { height: 160px; }
  .add-cart-btn, .view-cart-btn { min-height: 44px; }
  .qty-btn { width: 44px; height: 44px; }
}

@media(min-width:769px) and (max-width:1024px) {
  .products-grid { grid-template-columns:repeat(3, 1fr); gap: 20px; }
  .product-img { height: 180px; }
}
@media(max-width:480px) {
  .offer-title { font-size: 0.88rem; }
  .offer-subtitle { font-size: 0.68rem; }
  .section-title { font-size: 1.6rem; margin-bottom: 8px; }
}
s   {   c o l o r :   v a r ( - - t e x t - m u t e d ,   # 7 7 7 ) ;   f o n t - s i z e :   0 . 8 e m ;   t e x t - d e c o r a t i o n :   l i n e - t h r o u g h ;   m a r g i n - r i g h t :   6 p x ;   }   s t r o n g   {   f o n t - w e i g h t :   7 0 0 ;   f o n t - s i z e :   1 . 1 e m ;   }  
 