/* ============================================================
   InductionStore – Main Stylesheet
   Fonts: Syne (headings) + DM Sans (body)
   Theme: Bold orange/dark with high-energy conversion design
   ============================================================ */

:root {
  --fire: #FF4500;
  --fire-dark: #CC3700;
  --fire-light: #FF6B35;
  --gold: #F59E0B;
  --dark: #0D0D0D;
  --dark2: #1A1A1A;
  --dark3: #2A2A2A;
  --mid: #444;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --text: #222222;
  --muted: #666;
  --border: #E5E5E5;
  --success: #10B981;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: .2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: all .2s ease; white-space: nowrap;
}
.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--fire-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,69,0,.35);
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,69,0,.45); }
.btn-outline {
  background: transparent; border: 2px solid var(--fire); color: var(--fire);
}
.btn-outline:hover { background: var(--fire); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Announce Bar ── */
.announce-bar {
  background: var(--fire);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--dark); display: block; }
.logo-tag { font-size: 11px; color: var(--muted); display: block; letter-spacing: .03em; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500;
  color: var(--text); transition: all .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--fire); background: rgba(255,69,0,.06); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-whatsapp-hdr {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: white; padding: 9px 16px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.btn-whatsapp-hdr:hover { background: #1ebe5d; transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a0a00 100%);
  color: var(--white); padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,69,0,.18), transparent);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,69,0,.2); border: 1px solid rgba(255,69,0,.4);
  color: #FF8C5A; padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem,4vw,3rem); line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { color: var(--fire-light); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); }
.trust-item svg { color: var(--fire-light); }
.hero-image { text-align: center; position: relative; }
.hero-image img { max-width: 100%; max-height: 380px; object-fit: contain; drop-shadow: 0 20px 60px rgba(255,69,0,.3); }
.hero-img-placeholder {
  width: 100%; height: 360px; background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative;
}
.hero-img-placeholder::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(circle at 50% 70%, rgba(255,69,0,.2), transparent 60%);
}

/* ── Section Headers ── */
.section { padding: 70px 0; }
.section-alt { background: var(--light); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block; color: var(--fire); font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all .25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,69,0,.3); }
.product-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--light);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.badge-brand {
  position: absolute; top: 10px; left: 10px;
  background: var(--dark); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; letter-spacing: .04em;
}
.badge-oos {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--fire); text-transform: uppercase; margin-bottom: 6px; }
.product-card-name { font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 10px; line-height: 1.4; flex: 1; }
.product-card-name a:hover { color: var(--fire); }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.price-current { font-size: 1.35rem; font-weight: 700; font-family: var(--font-head); color: var(--dark); }
.price-original { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: 12px; font-weight: 700; color: var(--success); }
.advance-tag {
  background: rgba(255,69,0,.08); border: 1px solid rgba(255,69,0,.2);
  color: var(--fire); font-size: 12px; font-weight: 600; padding: 5px 10px;
  border-radius: 6px; margin-bottom: 14px;
}

/* ── Brand Sections ── */
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.brand-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  padding: 36px 28px; color: var(--white); cursor: pointer;
  transition: transform .25s;
  background: var(--dark2);
  min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end;
}
.brand-card:hover { transform: translateY(-4px); }
.brand-card.philips { background: linear-gradient(135deg, #003087, #0050bf); }
.brand-card.prestige { background: linear-gradient(135deg, #8B0000, #c41e3a); }
.brand-card.pigeon { background: linear-gradient(135deg, #1a5c1a, #2d8c2d); }
.brand-card .brand-icon { font-size: 48px; margin-bottom: 12px; }
.brand-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.brand-card p { font-size: 13px; opacity: .8; margin-bottom: 16px; }
.brand-card .btn-outline { border-color: rgba(255,255,255,.5); color: white; font-size: 13px; padding: 8px 18px; }
.brand-card .btn-outline:hover { background: rgba(255,255,255,.15); border-color: white; }

/* ── Promo Banner ── */
.promo-banner {
  background: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
  border-radius: 16px; padding: 48px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  overflow: hidden; position: relative;
}
.promo-banner::before {
  content: '🔥'; font-size: 150px; position: absolute; right: 220px; top: -20px;
  opacity: .12; line-height: 1;
}
.promo-content h2 { color: white; font-size: 2rem; margin-bottom: 10px; }
.promo-content p { color: rgba(255,255,255,.9); font-size: 16px; }
.promo-action { flex-shrink: 0; }
.promo-action .btn { background: white; color: var(--fire); font-weight: 700; font-size: 16px; padding: 16px 32px; }
.promo-action .btn:hover { background: var(--dark); color: white; }

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 60px 0; }
.product-images { position: sticky; top: 90px; }
.product-main-img {
  aspect-ratio: 1; background: var(--light); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 80px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 10px; }
.product-thumb {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer; transition: border-color .2s;
  display: flex; align-items: center; justify-content: center; background: var(--light); font-size: 24px;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--fire); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-panel { }
.product-brand-badge { font-size: 13px; font-weight: 700; color: var(--fire); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.product-title { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 18px; }
.product-price-box { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.product-price-box .price-current { font-size: 2rem; }
.advance-info-box {
  background: linear-gradient(135deg, rgba(255,69,0,.06), rgba(255,140,0,.06));
  border: 1px solid rgba(255,69,0,.2); border-radius: 10px;
  padding: 16px 20px; margin: 20px 0;
}
.advance-info-box .adi-title { font-weight: 700; color: var(--fire); margin-bottom: 8px; font-size: 15px; }
.advance-info-box ul { list-style: none; }
.advance-info-box ul li { font-size: 13px; color: var(--text); padding: 3px 0; }
.advance-info-box ul li::before { content: '✅ '; }
.product-features { margin: 20px 0; }
.product-features h4 { margin-bottom: 12px; font-size: 15px; }
.features-list { display: flex; flex-direction: column; gap: 8px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.feature-item::before { content: '⚡'; font-size: 13px; flex-shrink: 0; }
.product-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ── Checkout ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding: 48px 0; }
.checkout-form-section h2 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group label .req { color: var(--fire); }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: var(--font-body); font-size: 15px;
  transition: border-color .2s; color: var(--text); background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--fire); box-shadow: 0 0 0 3px rgba(255,69,0,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section-title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; border-bottom: 2px solid var(--border); padding-bottom: 10px; margin: 30px 0 20px; }
.terms-check { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,69,0,.04); border: 1px solid rgba(255,69,0,.2); padding: 16px; border-radius: 8px; margin: 20px 0; }
.terms-check input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--fire); flex-shrink: 0; margin-top: 2px; }
.terms-check label { font-size: 13px; line-height: 1.5; }
.terms-check a { color: var(--fire); text-decoration: underline; }

.order-summary-card {
  background: var(--light); border-radius: var(--radius); padding: 28px;
  position: sticky; top: 90px; border: 1px solid var(--border);
}
.order-summary-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.summary-product { display: flex; gap: 14px; margin-bottom: 20px; }
.summary-product-img { width: 70px; height: 70px; border-radius: 8px; background: white; display: flex; align-items: center; justify-content: center; font-size: 28px; overflow: hidden; flex-shrink: 0; }
.summary-product-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-product-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.summary-product-brand { font-size: 12px; color: var(--fire); font-weight: 600; text-transform: uppercase; }
.summary-lines { border-top: 1px solid var(--border); padding-top: 16px; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.summary-line.total { font-weight: 700; font-size: 16px; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 12px; }
.summary-advance { background: var(--fire); color: white; border-radius: 8px; padding: 14px; margin-top: 16px; text-align: center; }
.summary-advance strong { display: block; font-size: 1.2rem; }
.summary-advance small { opacity: .85; font-size: 12px; }

/* Payment step */
.payment-step { margin-top: 30px; border: 2px solid var(--fire); border-radius: 12px; overflow: hidden; }
.payment-step-header { background: var(--fire); color: white; padding: 14px 20px; font-weight: 700; font-size: 15px; }
.payment-step-body { padding: 24px; }
.upi-box { text-align: center; }
.upi-qr { width: 180px; height: 180px; background: white; margin: 0 auto 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.upi-qr img { width: 100%; height: 100%; object-fit: contain; }
.upi-id-box { background: var(--light); border-radius: 8px; padding: 12px; margin: 12px 0; }
.upi-id-box label { font-size: 12px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 4px; }
.upi-id-value { font-family: monospace; font-size: 15px; font-weight: 700; color: var(--dark); }
.copy-btn { background: none; border: 1px solid var(--border); color: var(--fire); font-size: 12px; padding: 4px 10px; border-radius: 4px; cursor: pointer; margin-left: 8px; }

/* ── Order Confirmation ── */
.order-confirm { max-width: 640px; margin: 60px auto; text-align: center; padding: 0 20px; }
.order-confirm-icon { font-size: 80px; margin-bottom: 20px; }
.order-confirm h1 { margin-bottom: 12px; }
.order-confirm p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.order-number-box { background: var(--light); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; }
.order-number-box .on-label { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.order-number-box .on-value { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--fire); }
.order-steps { display: flex; gap: 0; text-align: left; margin: 32px 0; }
.order-step { flex: 1; position: relative; padding: 16px; }
.order-step::after { content: '→'; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.order-step:last-child::after { display: none; }
.os-icon { font-size: 24px; margin-bottom: 8px; }
.os-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.os-desc { font-size: 12px; color: var(--muted); }

/* ── Track Order ── */
.track-page { max-width: 700px; margin: 60px auto; padding: 0 20px; }
.track-form { background: var(--light); padding: 36px; border-radius: var(--radius); margin-bottom: 40px; }
.track-result { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.status-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
}
.status-pending { background: #FEF3C7; color: #92400E; }
.status-confirmed { background: #D1FAE5; color: #065F46; }
.status-processing { background: #DBEAFE; color: #1E40AF; }
.status-shipped { background: #EDE9FE; color: #5B21B6; }
.status-delivered { background: #D1FAE5; color: #065F46; }
.status-cancelled { background: #FEE2E2; color: #991B1B; }

/* ── Contact Page ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 60px 0; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted); margin-bottom: 30px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-method-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(255,69,0,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-form { background: var(--light); padding: 36px; border-radius: var(--radius); }

/* ── Terms / Privacy ── */
.legal-page { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .last-updated { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--dark); }
.legal-page p, .legal-page li { color: #444; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }
.warn-box {
  background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: 8px; padding: 20px; margin: 24px 0;
}
.warn-box ul li { color: #991B1B; }

/* ── Filters ── */
.filter-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-bar h3 { font-size: 15px; font-weight: 600; color: var(--muted); }
.filter-btn {
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  border: 2px solid var(--border); background: var(--white); color: var(--text);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--fire); color: var(--fire); background: rgba(255,69,0,.06); }
.products-count { font-size: 14px; color: var(--muted); margin-left: auto; }

/* ── Pincode Checker ── */
.pincode-checker { background: var(--light); border-radius: 10px; padding: 16px 20px; margin: 16px 0; }
.pincode-checker h5 { font-size: 13px; margin-bottom: 10px; }
.pincode-row { display: flex; gap: 8px; }
.pincode-row input { flex: 1; padding: 9px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; }
.pincode-row input:focus { outline: none; border-color: var(--fire); }
.pincode-result { margin-top: 10px; font-size: 13px; font-weight: 600; }
.pincode-result.ok { color: var(--success); }
.pincode-result.err { color: #EF4444; }

/* ── Notifications ── */
.flash-msg {
  padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.flash-msg.success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.flash-msg.error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.flash-msg.info { background: #DBEAFE; color: #1E40AF; border: 1px solid #BFDBFE; }

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--dark); color: white; padding: 12px 0;
  transform: translateY(100%); transition: transform .3s;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-cta-text { font-size: 14px; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 89;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s; animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ── Footer ── */
.site-footer-main { background: var(--dark); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 14px; }
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-contact { margin-top: 16px; }
.footer-contact a { display: block; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.footer-contact a:hover { color: var(--fire-light); }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--fire-light); }
.footer-info-list li { font-size: 13px; color: rgba(255,255,255,.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; width: 100%; font-size: 13px; color: rgba(255,255,255,.4); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--fire); }
.breadcrumb span { color: var(--border); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--border); background: white; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--fire); border-color: var(--fire); color: white; }

/* ── Coupon ── */
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; }
#couponMsg { font-size: 13px; margin-top: 6px; font-weight: 600; }
#couponMsg.ok { color: var(--success); }
#couponMsg.err { color: #EF4444; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .brands-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-images { position: static; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 12px; z-index: 200; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .promo-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .promo-banner::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .section { padding: 48px 0; }
  .sticky-cta-text { font-size: 12px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .btn-whatsapp-hdr span { display: none; }
  .order-steps { flex-direction: column; }
  .order-step::after { content: '↓'; right: auto; left: 16px; top: auto; bottom: -14px; }
  .hero { padding: 48px 0 40px; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .5s ease both; }
.fade-in-2 { animation: fadeInUp .5s .1s ease both; }
.fade-in-3 { animation: fadeInUp .5s .2s ease both; }
