﻿/* ============================================
   PRIMAR CRACKERS – Royal Colorful Festive Theme
   Cinzel + Cormorant | Fire Animation | Bootstrap
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-cream: #fff9f0;
  --bg-warm: #fff3e0;
  --bg-white: #ffffff;
  --bg-royal: #1a0533;
  --bg-card: #ffffff;

  --royal-red: #c41e3a;
  --royal-red-dark: #9b1830;
  --royal-gold: #d4a017;
  --royal-gold-light: #f5c842;
  --royal-purple: #6b21a8;
  --royal-purple-light: #9333ea;
  --fire-orange: #ff6b00;
  --fire-red: #ff4500;
  --fire-yellow: #ffcc00;
  --festive-green: #15803d;
  --festive-blue: #1d4ed8;
  --festive-pink: #db2777;

  --text-dark: #2d1810;
  --text-body: #4a3728;
  --text-muted: #7c6a5a;
  --text-light: #ffffff;

  --font-royal: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-soft: 0 4px 20px rgba(196, 30, 58, 0.12);
  --shadow-card: 0 8px 32px rgba(107, 33, 168, 0.1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Diwali Theme */
  --night-900: #150a28;
  --night-700: #281044;
  --night-600: #341457;
  --marigold: #f5c518;
  --ember: #e07b00;
  --magenta: #d84a8e;
  --sky: #4db8ff;
  --cream: #fff3da;
  --leaf: #3c8c52;
}

/* ====================================
   RESET & BASE
   ==================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  background: var(--bg-cream);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, li { list-style: none; }

.arial     { font-family: var(--font-royal); }
.helvetica { font-family: var(--font-body); }

/* ====================================
   FIRE ANIMATION BACKGROUND
   ==================================== */
.fire-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  animation: emberRise linear infinite;
  opacity: 0;
}

.ember.gold   { background: var(--royal-gold);  box-shadow: 0 0 10px var(--royal-gold-light); }
.ember.orange { background: var(--fire-orange); box-shadow: 0 0 10px var(--fire-orange); }
.ember.red    { background: var(--royal-red);   box-shadow: 0 0 8px  var(--fire-red); }

@keyframes emberRise {
  0%   { transform: translateY(0)      translateX(0)    scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-50vh)  translateX(20px) scale(0.8); opacity: 0.8; }
  100% { transform: translateY(-105vh) translateX(-15px) scale(0.2); opacity: 0; }
}

.fire-glow-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  z-index: 9998;
  background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--royal-gold), var(--fire-orange), var(--fire-red));
  background-size: 400% 100%;
  animation: fireBarMove 3s ease infinite;
  pointer-events: none;
}

@keyframes fireBarMove {
  0%, 100% { background-position: 0%   50%; }
  50%       { background-position: 100% 50%; }
}

/* ====================================
   MARQUEE
   ==================================== */
.marquee {
  background: linear-gradient(90deg, var(--royal-red), var(--royal-purple), var(--royal-gold), var(--fire-orange), var(--royal-red)) !important;
  background-size: 400% 100% !important;
  animation: fireBarMove 5s ease infinite !important;
  color: var(--text-light) !important;
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.marquee .js-marquee-wrapper {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}
.marquee:hover .js-marquee-wrapper { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ====================================
   NAVBAR
   ==================================== */
.navbg {
  background: #1a1a2e !important;
  border-bottom: none;
  transition: var(--transition);
  position: relative;
  z-index: 999;
}

.site-logo {
  font-family: var(--font-royal);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--royal-gold) !important;
  letter-spacing: 1px;
}

.navbar-menu {
  border: 2px solid var(--royal-gold);
  border-radius: 50px;
  padding: 12px 25px !important;
  background: transparent;
}

.navfont .nav-link {
  color: var(--text-light) !important;
  font-family: var(--font-royal);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.7px;
  padding: 9px 20px !important;
  position: relative;
  display: flex;
  align-items: center;
  align-items: center;
  gap: 8px;
}

.navfont .nav-link i { font-size: 18px; color: var(--royal-gold); }

.navfont .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--royal-gold);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navfont .nav-link:hover,
.navfont .nav-item.active .nav-link { color: var(--royal-gold) !important; }

.navfont .nav-link:hover::after,
.navfont .nav-item.active .nav-link::after { width: 75%; }

.pricelist_pdf {
  background: var(--royal-red);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  margin: 0 8px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
  animation: firePulse 2s ease-in-out infinite;
  color: var(--text-light) !important;
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

@keyframes firePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3); }
  50%       { box-shadow: 0 6px 25px rgba(196, 30, 58, 0.5); }
}

.pricelist_pdf:hover { transform: scale(1.05); background: var(--royal-red-dark); }

/* ====================================
   COLOR UTILITIES
   ==================================== */
.clr-red, .clr1, .text-red { color: var(--royal-red) !important; }
.clr-yellow, .clr2          { color: var(--royal-gold) !important; }
.clr-cyan                   { color: var(--festive-blue) !important; }
.text-muted-custom          { color: var(--text-muted); }
.text-warning               { color: var(--royal-gold) !important; }
.text-white                 { color: var(--text-light) !important; }
.text-dark                  { color: var(--text-dark) !important; }

/* ====================================
   HEADINGS
   ==================================== */
.headfont1, .heading1 {
  font-family: var(--font-royal);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  line-height: 1.25;
}

.heading2 { font-family: var(--font-royal); font-weight: 700; font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.heading3 { font-family: var(--font-royal); font-weight: 700; font-size: 1.3rem; color: var(--royal-red); }
.heading4 { font-family: var(--font-royal); font-weight: 700; font-size: 1.2rem; color: var(--royal-red); }
.heading6 { font-size: 20px; color: #000; font-weight: 500; line-height: 1.6; }

/* ====================================
   BUTTONS
   ==================================== */
.get_btn1, .check-btn, .btn1, .btn-glow-primary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--royal-red), var(--fire-orange));
  color: var(--text-light) !important;
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.get_btn1:hover, .check-btn:hover, .btn1:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.45);
  color: var(--text-light) !important;
}

.check-btn {
  background: linear-gradient(135deg, var(--royal-gold), var(--fire-orange));
  color: var(--text-dark) !important;
}

/* ====================================
   HOME SECTIONS
   ==================================== */
.homegrad {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  padding: 80px 0;
  position: relative;
}

.product_bg {
  background: linear-gradient(135deg, var(--royal-purple) 0%, var(--royal-red) 50%, var(--fire-orange) 100%);
  padding: 80px 0;
}

.product_bg .heading1 { color: var(--royal-gold-light) !important; }

.shape_bg {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px 15px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 2px solid transparent;
}

.shape_bg:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: var(--royal-gold);
  box-shadow: 0 16px 48px rgba(212, 160, 23, 0.3);
}

.product_button {
  background: linear-gradient(135deg, var(--royal-gold), var(--fire-orange));
  color: var(--text-dark);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 12px;
  margin-top: 12px;
}

/* ====================================
   DIWALI BRAND SECTION — FULL FIX
   ==================================== */

/* Outer wrapper — full-width dark background */
#brandSec,
.brand-section {
  background: var(--night-900);   /* #150a28 — dark purple */
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Inner diwali wrap — full width */
.diwali-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Parallax bg stays inside */
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* Marigold garland */
.garland {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  height: 52px;
  gap: 2px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
}

.garland-top    { margin-bottom: -14px; }
.garland-bottom { margin-top: -14px; align-items: flex-end; transform: scaleY(-1); }

.g-flower,
.g-leaf {
  display: inline-flex;
  transform-origin: top center;
  animation: sway 2.6s ease-in-out infinite, bloom-in 0.5s ease-out backwards;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.35));
}

@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50%       { transform: rotate(6deg); }
}
@keyframes bloom-in {
  from { transform: scale(0) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);  opacity: 1; }
}

/* Card — full width, no standalone border-radius that cuts off */
.brand-card {
  background: linear-gradient(165deg, var(--night-700), var(--night-600));
  border-radius: 0;                /* full bleed inside section */
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: none;
}

/* Badge */
.diwali-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--night-900);
  background: linear-gradient(100deg, var(--marigold), var(--ember));
  font-weight: 600;
  animation: badge-glow 2.4s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 6px 0  rgba(245,197,24,0.35); }
  50%       { box-shadow: 0 0 18px 4px rgba(245,197,24,0.65); }
}

/* Headline */
.brand-headline {
  font-family: 'Yatra One', 'Cinzel', serif;
  color: var(--cream);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.25;
  margin: 18px 0 14px;
}

.brand-headline span {
  background: linear-gradient(95deg, var(--marigold), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brand-sub {
  color: rgba(255, 243, 218, 0.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Chakkar display */
.chakkar-display {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chakkar-glow {
  border-radius: 50%;
  display: flex;
  filter: drop-shadow(0 0 10px rgba(245,197,24,0.45));
}
.chakkar-glow-sm   { filter: drop-shadow(0 0 8px  rgba(216,74,142,0.5)); }
.chakkar-glow-blue { filter: drop-shadow(0 0 10px rgba(77,184,255,0.5)); }

.ck-spin-cw  { animation: spin-cw  2s linear infinite; }
.ck-spin-ccw { animation: spin-ccw 1.6s linear infinite; }
.ck-slow     { animation-duration: 2.6s; }
@keyframes spin-cw  { to { transform: rotate(360deg);  } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }

/* Stats grid — right col */
.brand-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.stat-card {
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(8px);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(245, 197, 24, 0.13);
  border-color: var(--marigold);
  box-shadow: 0 12px 36px rgba(245,197,24,0.18);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.stat-num {
  font-family: 'Rajdhani', var(--font-royal), sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: linear-gradient(95deg, var(--marigold), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.1;
}

.stat-suffix {
  font-family: 'Rajdhani', var(--font-royal), sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ember);
}

.stat-label {
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 243, 218, 0.68);
}

/* brand-inner uses Bootstrap grid — override old grid */
.brand-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.brand-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ====================================
   PARALLAX & BG SECTIONS
   ==================================== */
.parallax {
  background: linear-gradient(rgba(26,5,51,0.7), rgba(196,30,58,0.6)),
    url('img/img1.jpg') center/cover fixed;
  padding: 80px 0;
  color: var(--text-light);
}

.parallax-section { position: relative; overflow: hidden; padding: 60px 0; }
.parallax-overlay { position: absolute; inset: 0; z-index: 1; }
.parallax-content { position: relative; z-index: 2; }

.crackers_bg { background: var(--bg-warm); padding: 80px 0; }
.parallax3   { background: linear-gradient(180deg, var(--bg-cream), var(--bg-warm)); padding: 60px 0; }

.down_font { color: var(--royal-purple); }

/* ====================================
   GLASS / CARDS
   ==================================== */
.glass-card {
  background: var(--bg-white);
  border: 2px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.glass-card:hover {
  border-color: var(--royal-gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(196, 30, 58, 0.15);
}

/* ====================================
   REVIEWS SECTION
   ==================================== */
.reviews-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #fef3f0 50%, #f0f4ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.review-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4a017, #f5c842);
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.reviews-header h2 {
  font-family: var(--font-royal);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #c41e3a 0%, #6b21a8 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-header p {
  font-size: 18px;
  color: #666;
  font-style: italic;
}

.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border-left: 5px solid transparent;
  animation: slideLeftEntry 0.7s ease-out both;
}

@keyframes slideLeftEntry {
  0%   { opacity: 0; transform: translateX(-80px); }
  100% { opacity: 1; transform: translateX(0); }
}

.review-card:nth-child(1) { animation-delay: 0.1s; border-left-color: #c41e3a; }
.review-card:nth-child(2) { animation-delay: 0.2s; border-left-color: #d4a017; }
.review-card:nth-child(3) { animation-delay: 0.3s; border-left-color: #6b21a8; }
.review-card:nth-child(4) { animation-delay: 0.4s; border-left-color: #db2777; }
.review-card:nth-child(5) { animation-delay: 0.5s; border-left-color: #1d4ed8; }

.review-card:nth-child(1):hover { box-shadow: 0 8px 30px rgba(196,30,58,0.15);  transform: translateX(10px); }
.review-card:nth-child(2):hover { box-shadow: 0 8px 30px rgba(212,160,23,0.15); transform: translateX(10px); }
.review-card:nth-child(3):hover { box-shadow: 0 8px 30px rgba(107,33,168,0.15); transform: translateX(10px); }
.review-card:nth-child(4):hover { box-shadow: 0 8px 30px rgba(219,39,119,0.15); transform: translateX(10px); }
.review-card:nth-child(5):hover { box-shadow: 0 8px 30px rgba(29,78,216,0.15);  transform: translateX(10px); }

.stars {
  font-size: 28px;
  color: #f5c842;
  margin-bottom: 14px;
  letter-spacing: 3px;
  display: block;
  font-weight: 700;
  animation: starTwinkle 2.5s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px  rgba(245,200,66,0.6); }
  50%       { opacity: 0.8; text-shadow: 0 0 20px rgba(245,200,66,1), 0 0 30px rgba(255,200,0,0.5); }
}

.review-card p    { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 14px; font-weight: 500; }
.review-card h4   { font-family: var(--font-royal); font-size: 20px; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.review-card span { display: block; font-size: 15px; color: #db2777; font-weight: 600; letter-spacing: 0.5px; }

.spark { position: absolute; pointer-events: none; opacity: 0; }
.spark1 { width:8px; height:8px; background:#d4a017; border-radius:50%; top:10%;  right:5%;  box-shadow:0 0 10px #d4a017; animation:sparkleFloat 4s   ease-in-out infinite; }
.spark2 { width:6px; height:6px; background:#c41e3a; border-radius:50%; bottom:20%; left:5%;  box-shadow:0 0 8px  #c41e3a; animation:sparkleFloat 5s   ease-in-out infinite 0.5s; }
.spark3 { width:5px; height:5px; background:#6b21a8; border-radius:50%; top:50%;  right:2%;  box-shadow:0 0 6px  #6b21a8; animation:sparkleFloat 4.5s ease-in-out infinite 1s; }

@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0)     translateX(0);    }
  50%       { opacity: 1; transform: translateY(-50px) translateX(30px); }
}

/* ====================================
   CRACKERS_BG / FESTIVAL SECTION
   ==================================== */
.brand_bg {
  background: linear-gradient(160deg, var(--royal-red) 0%, var(--royal-purple) 60%, var(--bg-royal) 100%);
  padding: 80px 0;
  position: relative;
}

.count_bg {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  transition: var(--transition);
}

.count_bg:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(245,200,66,0.3);
}

.counttext { font-family: var(--font-royal); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--royal-gold-light); }
.bannerhead { color: var(--royal-gold-light); font-weight: 700; }
.border_right { border-right: 1px solid rgba(255,255,255,0.2); }

/* ====================================
   CONTACT STRIP
   ==================================== */
.contact-strip {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ffe8cc 50%, var(--bg-warm) 100%);
  border-top: 3px solid var(--royal-gold);
  border-bottom: 3px solid var(--royal-gold);
  position: relative;
  z-index: 1;
}

.contact-strip .btn-footer-outline:hover {
  background: var(--royal-red);
  border-color: var(--royal-red);
  color: var(--text-light) !important;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer { position: relative; z-index: 2; }

.footer-bg {
  background: linear-gradient(180deg, var(--royal-purple) 0%, var(--bg-royal) 100%);
  color: var(--text-light);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-bg p, .footer-bg .text1 { color: rgba(255,255,255,0.85); font-size: 16px; }
.footer-bg .heading3 { color: var(--royal-gold-light) !important; }

.smallborder1 {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--royal-gold), var(--fire-orange));
  border-radius: 2px;
}

.footer-logo {
  font-family: var(--font-royal);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--royal-gold-light) !important;
  display: inline-block;
  margin-bottom: 16px;
  -webkit-text-fill-color: var(--royal-gold-light);
}

.footer-desc { font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.footer-title { font-size: 1.15rem; color: var(--royal-gold-light) !important; margin-bottom: 0; }

.footer-contact-list li,
.footer-nav-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}

.footer-contact-list li i,
.footer-nav-list li i { color: var(--royal-gold-light); margin-top: 4px; flex-shrink: 0; }

.footer-contact-list a,
.footer-nav-list a { color: rgba(255,255,255,0.88) !important; transition: var(--transition); }

.footer-contact-list a:hover,
.footer-nav-list a:hover { color: var(--royal-gold-light) !important; padding-left: 4px; }

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }

.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--royal-gold-light) !important;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--royal-gold);
  color: var(--text-dark) !important;
  transform: translateY(-4px);
  border-color: var(--royal-gold);
}

.footer-quick-text { font-size: 15px; margin-bottom: 16px; color: rgba(255,255,255,0.8); }

.btn-sm-footer {
  display: inline-block;
  padding: 10px 24px !important;
  font-size: 12px !important;
  margin-top: 0 !important;
}

.btn-footer-outline {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--royal-gold-light);
  border-radius: var(--radius-pill);
  color: var(--royal-gold-light) !important;
  font-family: var(--font-royal);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  transition: var(--transition);
}

.btn-footer-outline:hover {
  background: var(--royal-gold-light);
  color: var(--text-dark) !important;
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 30px;
  padding-top: 24px;
}

.footer-legal p {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 20px; padding: 18px 0 8px; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }

/* ====================================
   FLOATING BUTTONS
   ==================================== */
.fixed-floater {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-action {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-light) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.float-action.wa   { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-action.call { background: linear-gradient(135deg, var(--royal-red), var(--fire-orange)); }
.float-action.shop { background: linear-gradient(135deg, var(--royal-purple), var(--royal-purple-light)); }

.float-action:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--text-light) !important;
}

/* ====================================
   ROCKET & CRACKER BURST
   ==================================== */
.rocket-sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.rocket {
  position: absolute;
  bottom: -40px;
  width: 6px; height: 36px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--fire-red), var(--royal-gold), var(--bg-white));
  animation: rocketFly ease-in forwards;
  opacity: 0;
}

.rocket::before {
  content: '';
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 18px;
  background: radial-gradient(ellipse, var(--fire-orange) 0%, var(--fire-red) 50%, transparent 70%);
  border-radius: 50%;
  animation: flameFlicker 0.15s ease-in-out infinite alternate;
}

.rocket::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid var(--royal-red);
}

@keyframes rocketFly {
  0%   { transform: translateY(0)      rotate(-2deg); opacity: 0; }
  5%   { opacity: 1; }
  85%  { transform: translateY(-88vh)  rotate(2deg);  opacity: 1; }
  100% { transform: translateY(-95vh)  rotate(0deg);  opacity: 0; }
}

@keyframes flameFlicker {
  0%   { transform: translateX(-50%) scale(1);   opacity: 0.9; }
  100% { transform: translateX(-50%) scale(1.3); opacity: 1;   }
}

.burst {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: burstPop 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes burstPop {
  0%   { transform: translate(0,0)                      scale(0); opacity: 1; }
  100% { transform: translate(var(--bx), var(--by))     scale(1); opacity: 0; }
}

.burst.gold   { background: var(--royal-gold-light);    box-shadow: 0 0 8px var(--royal-gold); }
.burst.red    { background: var(--royal-red);            box-shadow: 0 0 8px var(--fire-red); }
.burst.orange { background: var(--fire-orange);          box-shadow: 0 0 8px var(--fire-orange); }
.burst.purple { background: var(--royal-purple-light);  box-shadow: 0 0 8px var(--royal-purple); }
.burst.green  { background: #22c55e;                    box-shadow: 0 0 8px #22c55e; }

.cracker-spin {
  display: inline-block;
  animation: crackerSpin 3s linear infinite;
}

@keyframes crackerSpin {
  0%   { transform: rotate(0deg)   scale(1);   }
  25%  { transform: rotate(90deg)  scale(1.1); }
  50%  { transform: rotate(180deg) scale(1);   }
  75%  { transform: rotate(270deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1);   }
}

/* ====================================
   ANIMATIONS
   ==================================== */
.blink { animation: blinkPulse 1.8s ease-in-out infinite; }

@keyframes blinkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.04); }
}

.reveal       { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.revealed, .reveal-right.revealed { transform: translateX(0); }
.reveal-scale { transform: scale(0.85); }
.reveal-scale.revealed { transform: scale(1); }

.wow { visibility: hidden; }
.wow.animated { visibility: visible; }

@keyframes fadeInLeft     { from { opacity:0; transform:translateX(-50px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight    { from { opacity:0; transform:translateX(50px);  } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInUp       { from { opacity:0; transform:translateY(40px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown     { from { opacity:0; transform:translateY(-40px); } to { opacity:1; transform:translateY(0); } }
@keyframes zoomIn         { from { opacity:0; transform:scale(0.8);        } to { opacity:1; transform:scale(1);     } }
@keyframes fadeInRightBig { from { opacity:0; transform:translateX(80px);  } to { opacity:1; transform:translateX(0); } }
@keyframes slideInUp      { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }
@keyframes slideInDown    { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInScale    { from { opacity:0; transform:scale(0.95);       } to { opacity:1; transform:scale(1);     } }
@keyframes pulse          { 0%, 100% { opacity:1; } 50% { opacity:0.8; } }

.fadeInLeft.animated     { animation: fadeInLeft     1s ease forwards; }
.fadeInRight.animated    { animation: fadeInRight    1s ease forwards; }
.fadeInUp.animated       { animation: fadeInUp       1s ease forwards; }
.fadeInDown.animated     { animation: fadeInDown     1s ease forwards; }
.zoomIn.animated         { animation: zoomIn         1s ease forwards; }
.fadeInRightBig.animated { animation: fadeInRightBig 1s ease forwards; }

.fire-text { animation: fireFlicker 2s ease-in-out infinite alternate; }

@keyframes fireFlicker {
  0%   { text-shadow: 0 0 10px rgba(255,107,0,0.5),  0 0 20px rgba(196,30,58,0.3); }
  100% { text-shadow: 0 0 20px rgba(245,200,66,0.6), 0 0 40px rgba(255,69,0,0.4); }
}

/* ====================================
   OWL CAROUSEL
   ==================================== */
.owl-carousel .owl-dots .owl-dot span { background: rgba(255,255,255,0.4) !important; }
.owl-carousel .owl-dots .owl-dot.active span { background: var(--royal-gold-light) !important; width: 24px; border-radius: 4px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--royal-red);
  border-radius: 50%;
  padding: 18px;
  background-size: 50%;
}

/* ====================================
   MISC UTILITIES
   ==================================== */
.section-pad { padding: 80px 0; position: relative; z-index: 1; }
.pad-top { padding-top: 40px; }
.pad     { padding: 40px 0; }
.fullpad { padding: 0; margin: 0; }
.w-35    { max-width: 35%; }

.brand-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(212,160,23,0.2);
  transition: var(--transition);
  background: var(--bg-white);
  padding: 10px;
}

.brand-item:hover { border-color: var(--royal-red); transform: translateY(-5px); box-shadow: var(--shadow-soft); }

/* ====================================
   PRODUCT CARDS
   ==================================== */
.product-card {
  background: var(--bg-white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeInScale 0.5s ease-out;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image {
  height: 170px;
  background: linear-gradient(135deg, var(--bg-warm), #ffe4b5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.product-img { width:100%; height:100%; object-fit:cover; transition: var(--transition); }
.product-card:hover .product-img { transform: scale(1.08); }

.product-emoji-fallback { font-size: 56px; line-height: 1; }

.product-body {
  padding: 18px;
  display: flex; flex-direction: column; flex: 1;
}

.product-name {
  font-family: var(--font-royal);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.35;
}

.product-desc { font-size: 14px; color: #333; margin-bottom: 12px; line-height: 1.5; }

.original-price   { color: #666; text-decoration: line-through; display: block; font-size: 15px; }
.discounted-price { color: #000; font-weight: 700; font-size: 24px; display: block; margin-top: 4px; }

.quantity-section {
  display: flex; gap: 8px; align-items: center;
  flex: 1; margin-top: 12px;
}

.qty-btn {
  width:40px; height:40px;
  border: 2px solid #000;
  border-radius: 6px;
  background: var(--bg-white);
  color: #000;
  font-size: 20px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}

.qty-btn:hover { background: #000; color: var(--text-light); transform: scale(1.1); }

.qty-input {
  width: 70px; padding: 8px;
  border: 2px solid #000;
  border-radius: 4px;
  text-align: center;
  font-size: 16px; font-weight: 600; color: #000;
}

.add-to-cart-btn {
  flex: 1; padding: 8px 12px;
  border: none; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--royal-red), var(--royal-purple));
  color: #fff;
  font-family: var(--font-royal);
  font-weight: 600; font-size: 12px;
  cursor: pointer; transition: var(--transition);
}

.add-to-cart-btn:hover { box-shadow: 0 6px 20px rgba(196,30,58,0.35); transform: scale(1.02); }

/* ====================================
   ORDER SUMMARY MODAL
   ==================================== */
.order-summary-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeInScale 0.3s ease-out;
}

.order-summary-modal.active { display: flex; }

.order-summary-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 3px solid #d4a017;
  max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideInUp 0.4s ease-out;
}

.order-summary-header {
  background: #1a1a2e;
  border-bottom: 3px solid #d4a017;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
}

.order-summary-header h2 {
  font-family: var(--font-royal);
  font-size: 26px; font-weight: 800;
  color: #d4a017; margin: 0; letter-spacing: 1px;
}

.close-modal {
  background: none; border: none;
  font-size: 32px; color: #d4a017;
  cursor: pointer; padding: 0;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  transition: var(--transition);
}

.close-modal:hover { transform: scale(1.2); color: #fff; }

.order-summary-body { padding: 32px; }

.order-items-table { background:#f9f9f9; border-radius: var(--radius-md); overflow:hidden; margin-bottom:24px; }

.order-table-header {
  background: #e8e8e8;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:12px; padding:16px 20px;
  font-family: var(--font-royal);
  font-weight:700; font-size:18px;
  text-transform:uppercase; letter-spacing:.5px; color:#1a1a1a;
}

.order-item-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:12px; padding:16px 20px;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}
.order-item-row:last-child { border-bottom: none; }

.order-item-product { display:flex; gap:12px; align-items:center; }

.order-item-image {
  width:60px; height:60px;
  border-radius:6px;
  background: linear-gradient(135deg, var(--bg-warm), #ffe4b5);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex-shrink:0;
}

.order-item-image img { width:100%; height:100%; object-fit:cover; }
.order-item-emoji   { font-size:28px; line-height:1; }
.order-item-name    { font-family:var(--font-royal); font-weight:600; color:#000; font-size:16px; }

.order-item-price,
.order-item-qty,
.order-item-subtotal { text-align:right; font-weight:600; color:#000; font-size:16px; }

.order-summary-total { background:#f0f0f0; border-radius:var(--radius-md); padding:20px; text-align:right; }

.grand-total-row {
  display:flex; justify-content:space-between; align-items:center;
  font-size:22px; font-weight:700; color:#000;
}

.grand-total-row strong { color:#d4a017; font-size:28px; }

.order-summary-footer {
  display:flex; gap:12px;
  padding:20px 32px;
  background:#f9f9f9; border-top:1px solid #e0e0e0;
}

.btn-add-more {
  flex:1; padding:14px 24px;
  border:2px solid #000; background:var(--bg-white);
  color:#000; font-family:var(--font-royal);
  font-weight:700; font-size:14px;
  border-radius: var(--radius-pill);
  cursor:pointer; transition:var(--transition);
  text-transform:uppercase; letter-spacing:.5px;
}
.btn-add-more:hover { background:#f0f0f0; transform:translateY(-2px); }

.btn-place-order {
  flex:1; padding:14px 24px;
  background:linear-gradient(135deg,#d4a017,#e8b645);
  color:#000; font-family:var(--font-royal);
  font-weight:700; font-size:14px;
  border-radius:var(--radius-pill);
  cursor:pointer; transition:var(--transition);
  text-transform:uppercase; letter-spacing:.5px;
  text-decoration:none; border:none;
  display:flex; align-items:center; justify-content:center;
}

.btn-place-order:hover {
  background:linear-gradient(135deg,#e8b645,#f5c842);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(212,160,23,0.4);
  color:#000; text-decoration:none;
}

/* ====================================
   FLOATING CHECKOUT
   ==================================== */
.floating-checkout {
  position: fixed; bottom:20px; right:20px;
  background: #1a1a2e;
  border: 2px solid #d4a017;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  z-index: 9999;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  animation: slideInUp 0.5s ease-out;
}

.checkout-label  { font-family:var(--font-royal); font-size:13px; color:#fff; letter-spacing:.5px; }
.checkout-amount { font-family:var(--font-royal); font-weight:800; font-size:18px; color:#d4a017; }

.btn-checkout {
  padding:12px 24px;
  background:linear-gradient(135deg,#d4a017,#e8b645);
  color:#000; font-family:var(--font-royal);
  font-weight:700; font-size:14px;
  border-radius:var(--radius-pill); border:none;
  cursor:pointer; transition:var(--transition);
  white-space:nowrap; text-transform:uppercase; letter-spacing:.5px;
}
.btn-checkout:hover { background:linear-gradient(135deg,#e8b645,#f5c842); transform:scale(1.05); box-shadow:0 8px 24px rgba(212,160,23,0.4); }

/* ====================================
   PRODUCT SIDEBAR
   ==================================== */
.product-sidebar { background:var(--bg-white); padding:20px; border-radius:var(--radius-md); box-shadow:var(--shadow-soft); }
.sidebar-section { margin-bottom:20px; }
.sidebar-label { display:block; font-weight:600; color:var(--royal-red); margin-bottom:10px; font-family:var(--font-royal); }

.sidebar-toggle {
  display:none;
  width:100%; padding:12px 16px;
  background:linear-gradient(135deg,var(--royal-red),var(--royal-purple));
  color:#fff; border:none; border-radius:var(--radius-md);
  font-family:var(--font-royal); font-weight:700; font-size:14px;
  cursor:pointer; transition:var(--transition);
  text-transform:uppercase; letter-spacing:.5px;
  align-items:center; justify-content:space-between; gap:8px; margin-bottom:12px;
}
.sidebar-toggle:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(196,30,58,0.3); }
.sidebar-toggle i:last-child { transition:transform .3s ease; font-size:16px; }
.sidebar-toggle[aria-expanded="true"] i:last-child { transform:rotate(-180deg); }

.category-filter-item {
  font-family:var(--font-royal); font-size:12px;
  letter-spacing:.5px; text-transform:uppercase;
  padding:10px 12px; margin-bottom:6px;
  border-radius:var(--radius-sm); border:1px solid rgba(212,160,23,0.25);
  color:var(--text-body); cursor:pointer; transition:var(--transition);
}
.category-filter-item:hover,
.category-filter-item.active {
  background:linear-gradient(135deg,var(--royal-red),var(--royal-purple));
  color:var(--text-light); border-color:transparent;
  box-shadow:0 6px 18px rgba(196,30,58,0.25);
}

/* ====================================
   BANNER CAROUSEL
   ==================================== */
.banner-carousel .carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .banner-carousel .carousel-item img { height: 420px; }
}
@media (min-width: 1200px) {
  .banner-carousel .carousel-item img { height: 500px; }
}

.product-emoji       { font-size: 52px; line-height: 1; padding: 16px 0; }
.brand-emoji         { font-size: 48px; }
.mobile-icon-img     { width: 80px !important; max-width: 80px; margin: 0 auto; border-radius: 50%; object-fit: cover; }

.product_bg .container,
.parallax3 .container,
#owl-demo1,
#owl-brands { overflow: hidden; max-width: 100%; }

.owl-carousel .owl-stage-outer { overflow: hidden; }

.navbar-toggler { border: 2px solid var(--royal-red) !important; padding: 6px 10px; }
.navbar-toggler:focus { outline: none; box-shadow: 0 0 0 3px rgba(196,30,58,0.2); }

/* ====================================
   RESPONSIVE — TABLET (≤ 991px)
   ==================================== */
@media (max-width: 991px) {

  /* Brand section */
  .brand-card { padding: 40px 24px; }
  .garland    { height: 40px; }

  .chakkar-display         { gap: 14px; }
  .chakkar-display svg     { width: 50px !important; height: 50px !important; }

  .stats-grid  { gap: 16px; }
  .stat-card   { padding: 20px 14px; }
  .stat-icon   { font-size: 1.5rem; }
  .stat-num    { font-size: 1.9rem; }
  .stat-label  { font-size: 0.72rem; }

  /* Nav */
  .navbar-collapse { background: #1a1a2e; padding: 16px; border-radius: var(--radius-md); margin-top: 10px; box-shadow: var(--shadow-soft); }
  .navbar-menu     { border: 2px solid var(--royal-gold); border-radius: 50px; padding: 12px 15px !important; }
  .navfont .nav-link { font-size: 14px; padding: 10px !important; }
  .pricelist_pdf   { margin: 8px auto; display: table; }

  /* Sidebar */
  .sidebar-toggle { display: flex !important; margin-bottom: 12px; }
  .sidebar-content { border-top: 1px solid #e0e0e0; padding-top: 12px; max-height: 600px; overflow-y: auto; }
  .sidebar-content.d-none { display: none !important; max-height: 0; padding: 0; border: none; margin: 0; }

  /* Misc */
  .border_right { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 12px; }
  .parallax     { background-attachment: scroll; }
  .footer-bg    { padding: 50px 0 24px; }
  .product-name { font-size: 20px; }
  .discounted-price { font-size: 22px; }
  .heading6     { font-size: 18px; }
  .w-35         { max-width: 55%; }
}

/* ====================================
   RESPONSIVE — MOBILE (≤ 767px)
   ==================================== */
@media (max-width: 767px) {
  body { font-size: 17px; }

  /* Brand section mobile */
  .brand-card  { padding: 30px 16px; }
  .garland     { height: 32px; }
  .brand-headline { font-size: clamp(1.5rem, 7vw, 2rem); }
  .brand-sub   { font-size: 0.95rem; margin-bottom: 20px; }

  .chakkar-display     { gap: 10px; margin-top: 12px; }
  .chakkar-display svg { width: 42px !important; height: 42px !important; }

  .stats-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card   { padding: 16px 10px; border-radius: 10px; }
  .stat-icon   { font-size: 1.3rem; margin-bottom: 6px; }
  .stat-num    { font-size: 1.6rem; }
  .stat-suffix { font-size: 1rem; }
  .stat-label  { font-size: 0.68rem; letter-spacing: 0.03em; }

  /* Nav */
  .site-logo   { font-size: 1rem; max-width: 55%; line-height: 1.2; }
  .navbar      { padding: 8px 0 !important; }
  .navbar-nav .nav-link { padding: 12px 16px !important; font-size: 15px; }
  .navbar-collapse { max-height: 80vh; overflow-y: auto; }

  /* Reviews */
  .reviews-section  { padding: 60px 0; }
  .reviews-header   { margin-bottom: 40px; }
  .review-badge     { font-size: 12px; padding: 8px 16px; }
  .review-card      { padding: 18px; }
  .stars            { font-size: 20px; }
  .review-card p    { font-size: 14px; }
  .review-card h4   { font-size: 16px; }

  /* Misc */
  .marquee    { font-size: 11px; letter-spacing: 1px; }
  .fixed-floater { bottom: 16px; left: 16px; gap: 10px; }
  .float-action  { width: 46px; height: 46px; font-size: 20px; }
  .get_btn1, .check-btn, .btn1 { padding: 12px 24px; font-size: 13px; display: inline-block; }
  .contact-strip h3    { font-size: 1.2rem; }
  .contact-strip .heading6 { font-size: 14px; word-break: break-word; }
  .contact-strip .col-lg-4 { margin-top: 12px; }
  .product-name      { font-size: 18px; }
  .discounted-price  { font-size: 20px; }
  .heading6          { font-size: 16px; }
  .w-35              { max-width: 70% !important; }
  .fire-container .ember { display: none; }
  .rocket-sky .rocket    { animation-duration: 2s !important; }
  .product_bg  { padding: 48px 0; }
  .shape_bg    { margin-bottom: 4px; }
  .product-emoji { font-size: 40px; padding: 12px 0; }

  /* Floating checkout */
  .floating-checkout { bottom:16px; right:16px; flex-wrap:wrap; padding:12px 16px; }
  .checkout-label  { font-size: 12px; }
  .checkout-amount { font-size: 16px; }
  .btn-checkout    { flex-basis: 100%; padding: 10px 16px; font-size: 13px; }

  /* Order modal */
  .order-summary-content { max-height: 95vh; }
  .order-summary-header  { padding: 20px 24px; }
  .order-summary-header h2 { font-size: 22px; }
  .order-summary-body    { padding: 20px; }
  .order-table-header,
  .order-item-row {
    grid-template-columns: 1.5fr 0.8fr 0.6fr 0.8fr;
    gap: 8px; font-size: 12px; padding: 12px;
  }
  .order-item-image { width: 50px; height: 50px; }
  .order-item-name  { font-size: 12px; }
  .order-summary-footer { gap: 8px; padding: 16px 20px; }
  .btn-add-more, .btn-place-order { padding: 12px 16px; font-size: 12px; }
  .grand-total-row { font-size: 16px; }
  .grand-total-row strong { font-size: 20px; }

  .homegrad .headfont1 { font-size: 1.6rem; }
  .contact-strip .get_btn1,
  .contact-strip .btn-footer-outline { display: inline-block; margin: 6px 4px; }
}

/* ====================================
   RESPONSIVE — SMALL MOBILE (≤ 575px)
   ==================================== */
@media (max-width: 575px) {
  body { font-size: 16px; }

  /* Brand section */
  .brand-card  { padding: 24px 14px; }
  .garland     { height: 28px; }
  .brand-headline { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  .chakkar-display svg { width: 36px !important; height: 36px !important; }

  .stats-grid { gap: 8px; }
  .stat-card  { padding: 14px 8px; border-radius: 8px; }
  .stat-icon  { font-size: 1.1rem; }
  .stat-num   { font-size: 1.4rem; }
  .stat-suffix { font-size: 0.9rem; }
  .stat-label { font-size: 0.62rem; }

  /* Misc */
  .section-pad { padding: 48px 0; }
  .glass-card, .contact-form { padding: 20px; }
  .contact-card  { padding: 24px 16px; }
  .footer-logo   { font-size: 1.25rem; }
  .btn-sm-footer, .btn-footer-outline { width: 100%; text-align: center; }
  .rocket        { width: 4px; height: 28px; }
  .product-image { height: 150px; }
  .quantity-section { flex-wrap: wrap; gap: 6px; }
  .qty-btn       { width: 38px; height: 38px; }
  .qty-input     { width: 65px; }
  .heading6      { font-size: 15px; }
  .banner-carousel .carousel-item img { height: 180px; }
  .fixed-floater { bottom: 12px; left: 12px; }
  .float-action  { width: 42px; height: 42px; font-size: 18px; }
  .marquee       { font-size: 10px; padding: 8px 0; }
}

/* ====================================
   RESPONSIVE — LAPTOP (992–1199px)
   ==================================== */
@media (min-width: 992px) and (max-width: 1199px) {
  .container-fluid.px-lg-5 { padding-left: 24px !important; padding-right: 24px !important; }
  .brand-card { padding: 50px 36px; }
  .stat-num   { font-size: 2rem; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  .g-flower, .g-leaf, .diwali-badge,
  .ck-spin-cw, .ck-spin-ccw,
  .rocket, .ember, .burst { animation: none !important; }
}

/* ====================================
   ENHANCED FIRE & ROCKET ANIMATIONS
   ==================================== */

/* ── FIRE PARTICLES (background fixed layer) ── */
.fire-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.fire-particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50% 50% 30% 30%;
  animation: fireParticleRise linear infinite;
  opacity: 0;
  filter: blur(0.5px);
}

.fire-particle.fp-gold   { background: radial-gradient(circle, #fff7c0, #f5c518, #e07b00); }
.fire-particle.fp-orange { background: radial-gradient(circle, #ffe5a0, #ff6b00, #c41e3a); }
.fire-particle.fp-red    { background: radial-gradient(circle, #ffb347, #ff4500, #8b0000); }
.fire-particle.fp-white  { background: radial-gradient(circle, #ffffff, #fff3da, #f5c518); }

@keyframes fireParticleRise {
  0%   { transform: translateY(0)       translateX(0)      scale(1)    rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.95; }
  40%  { transform: translateY(-35vh)   translateX(18px)   scale(0.75) rotate(15deg);  opacity: 0.8; }
  70%  { transform: translateY(-65vh)   translateX(-12px)  scale(0.45) rotate(-10deg); opacity: 0.4; }
  100% { transform: translateY(-105vh)  translateX(8px)    scale(0.1)  rotate(20deg);  opacity: 0; }
}

/* ── FIRE GLOW BAR (bottom) ── */
.fire-glow-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  z-index: 9998;
  background: linear-gradient(90deg,
    #8b0000, #c41e3a, #ff4500,
    #ff6b00, #f5c518, #ff6b00,
    #ff4500, #c41e3a, #8b0000);
  background-size: 300% 100%;
  animation: fireBarShift 2.5s ease-in-out infinite;
  pointer-events: none;
  box-shadow: 0 -4px 20px rgba(255, 107, 0, 0.6),
              0 -8px 40px rgba(196, 30, 58, 0.4);
}

@keyframes fireBarShift {
  0%   { background-position: 0%   50%; box-shadow: 0 -4px 20px rgba(255,107,0,0.6), 0 -8px 40px rgba(196,30,58,0.4); }
  50%  { background-position: 100% 50%; box-shadow: 0 -4px 28px rgba(245,197,24,0.8), 0 -8px 50px rgba(255,69,0,0.5); }
  100% { background-position: 0%   50%; box-shadow: 0 -4px 20px rgba(255,107,0,0.6), 0 -8px 40px rgba(196,30,58,0.4); }
}

/* ── ROCKET SKY LAYER ── */
.rocket-sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* Rocket body */
.rocket {
  position: absolute;
  bottom: -60px;
  width: 7px;
  height: 40px;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(to top, #8b0000, #ff4500, #ff6b00, #f5c518, #ffffff);
  animation: rocketLaunch ease-in forwards;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.9));
}

/* Rocket nose */
.rocket::after {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left:  5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 12px solid #f5c518;
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.8));
}

/* Rocket flame trail */
.rocket::before {
  content: '';
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 28px;
  background: radial-gradient(ellipse at top,
    #ffffff 0%,
    #fff7c0 15%,
    #f5c518 30%,
    #ff6b00 55%,
    #ff4500 75%,
    transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: flameDance 0.1s ease-in-out infinite alternate;
  filter: blur(1px);
}

@keyframes rocketLaunch {
  0%   { transform: translateY(0)      translateX(var(--rx,0)) rotate(var(--ra,0deg)); opacity: 0; }
  4%   { opacity: 1; }
  88%  { transform: translateY(-92vh)  translateX(var(--rx,0)) rotate(var(--ra,0deg)); opacity: 1; }
  100% { transform: translateY(-102vh) translateX(var(--rx,0)) rotate(var(--ra,0deg)); opacity: 0; }
}

@keyframes flameDance {
  0%   { transform: translateX(-50%) scaleX(1)   scaleY(1);   opacity: 1; }
  100% { transform: translateX(-50%) scaleX(1.4) scaleY(1.3); opacity: 0.85; }
}

/* Rocket smoke trail dots */
.rocket-smoke {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 200, 100, 0.6);
  pointer-events: none;
  animation: smokeFade 0.9s ease-out forwards;
}

@keyframes smokeFade {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ── BURST / FIREWORK EXPLOSION ── */
.burst-container {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.burst-particle {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: burstFly var(--bd, 1s) ease-out forwards;
  opacity: 1;
}

@keyframes burstFly {
  0%   { transform: translate(0, 0) scale(1.2); opacity: 1; }
  60%  { opacity: 0.9; }
  100% { transform: translate(var(--bx), var(--by)) scale(0.2); opacity: 0; }
}

/* Burst ring flash */
.burst-flash {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,230,100,0.6) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: burstFlash 0.35s ease-out forwards;
  pointer-events: none;
}

@keyframes burstFlash {
  0%   { width: 0px;   height: 0px;  opacity: 1; }
  60%  { opacity: 0.8; }
  100% { width: 120px; height: 120px; opacity: 0; }
}

/* Burst star shape particles */
.burst-star {
  position: absolute;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  transform-origin: bottom center;
  animation: starShoot var(--bd, 0.9s) ease-out forwards;
  opacity: 1;
}

@keyframes starShoot {
  0%   { transform: rotate(var(--sa)) scaleY(0.2); opacity: 1; }
  40%  { transform: rotate(var(--sa)) scaleY(1) translateY(calc(var(--sl) * -1)); opacity: 0.9; }
  100% { transform: rotate(var(--sa)) scaleY(0.4) translateY(calc(var(--sl) * -1.5)); opacity: 0; }
}

/* Glitter tail */
.burst-glitter {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  animation: glitterFall 1.2s ease-in forwards;
  pointer-events: none;
}

@keyframes glitterFall {
  0%   { transform: translate(var(--gx), var(--gy)) scale(1);   opacity: 1; }
  100% { transform: translate(var(--gx), calc(var(--gy) + 80px)) scale(0.3); opacity: 0; }
}

/* ── CRACKER SPIN ICON ── */
.cracker-spin {
  display: inline-block;
  animation: crackerSpin 3s linear infinite;
}

@keyframes crackerSpin {
  0%   { transform: rotate(0deg)   scale(1);   }
  25%  { transform: rotate(90deg)  scale(1.15); }
  50%  { transform: rotate(180deg) scale(1);   }
  75%  { transform: rotate(270deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1);   }
}

/* ── MOBILE: reduce particles ── */
@media (max-width: 767px) {
  .fire-container .fire-particle { display: none; }
  .fire-container .fire-particle:nth-child(-n+6) { display: block; }
  .rocket { width: 5px; height: 30px; }
  .fire-glow-bar { height: 5px; }
}

@media (max-width: 575px) {
  .fire-container .fire-particle:nth-child(-n+4) { display: block; }
  .fire-container .fire-particle { display: none; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  .fire-particle, .rocket, .burst-particle,
  .burst-star, .burst-glitter, .burst-flash,
  .rocket-smoke, .fire-glow-bar { animation: none !important; opacity: 0 !important; }
}
.review-card-single{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(224,101,27,0.15);
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  padding:38px 40px;
  position:relative;
  overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.review-card-single::before{
  content:'"';
  font-size:5rem;
  font-family:Georgia,serif;
  color:rgba(224,101,27,0.08);
  position:absolute;
  top:-10px;
  left:24px;
  line-height:1;
}
.review-card-single:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(224,101,27,.18);
  border-color:rgba(224,101,27,.4);
}
.testi-slider{position:relative;min-height:260px;}
.testi-slide{position:absolute;inset:0;opacity:0;transform:translateX(30px);animation:testiCycle 15s infinite;}
.testi-slide:nth-child(1){animation-delay:0s;}
.testi-slide:nth-child(2){animation-delay:3s;}
.testi-slide:nth-child(3){animation-delay:6s;}
.testi-slide:nth-child(4){animation-delay:9s;}
.testi-slide:nth-child(5){animation-delay:12s;}
@keyframes testiCycle{
  0%,100%{opacity:0;transform:translateX(30px);}
  2%,18%{opacity:1;transform:translateX(0);}
  20%{opacity:0;transform:translateX(-30px);}
}











.nav-logo{
    width:80px;
    height:80px;
    object-fit:contain;
    border-radius:50%;
    background:#fff;
}

.site-logo{
    font-size:23px;
    font-weight:700;
    color:#fff;
    letter-spacing:1px;
}

@media(max-width:768px){
    .nav-logo{
        width:40px;
        height:40px;
    }

    .site-logo{
        font-size:18px;
    }
}




.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;       /* equal height fix */
  aspect-ratio: 1 / 1;     /* square cards */
  box-sizing: border-box;
  padding: 28px 20px;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #e8883a;           /* visible orange color */
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;           /* white text - clearly visible */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}











.feature-card {
  background: #ffffff;
  border: 1px solid #f0e0d0;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(180, 80, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(180, 80, 0, 0.15);
}

.feature-icon-wrap {
  margin-bottom: 12px;
}

.feature-title {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
































/* ===================== FEATURED BRANDS STRIP ===================== */

.featured-brands-strip {
    width: 100%;
    padding: 28px 0 34px;
    background: linear-gradient(90deg,
        #c9a8f0 0%,
        #9b5de5 25%,
        #6a0fc7 50%,
        #9b5de5 75%,
        #c9a8f0 100%);
    overflow: hidden;
    position: relative;
}

.featured-brands-strip .container-fluid {
    width: 100%;
    padding: 0;
}

.featured-heading {
    color: #ffffff;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* ---------- Marquee wrapper ---------- */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(201, 168, 240, 0.9), rgba(201, 168, 240, 0));
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(201, 168, 240, 0.9), rgba(201, 168, 240, 0));
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandsScroll 22s linear infinite;
}

.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 0 45px;
    background: transparent;
    border: none;
}

.brand-item img {
    max-height: 90px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

/* if an image fails to load, hide the broken-icon/alt-text box instead of showing white */
.brand-item img:not([src]),
.brand-item img[src=""] {
    display: none;
}

.brand-item img {
    color: transparent; /* hides alt text if broken, instead of black text on white */
}

.brand-item img:hover {
    transform: scale(1.08);
}

/* ---------- Infinite scroll animation ---------- */
@keyframes brandsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .featured-heading {
        font-size: 20px;
        margin-bottom: 116px;
    }

    .brand-item {
        height: 60px;
        padding: 0 25px;
    }

    .brand-item img {
        max-height: 60px;
        max-width: 140px;
    }

    .brands-track {
        animation-duration: 16s;
    }
}

@media (max-width: 480px) {
    .featured-brands-strip {
        padding: 20px 0 24px;
    }

    .featured-heading {
        font-size: 17px;
    }

    .brand-item {
        height: 48px;
        padding: 0 18px;
    }

    .brand-item img {
        max-height: 48px;
        max-width: 110px;
    }
}

/* ===================== END FEATURED BRANDS STRIP ===================== */




/* ===================== PREMIUM CRACKERS COLLECTION CAROUSEL ===================== */

.premium-collection-bg {
    width: 100%;
    background: #d9d994;
    padding: 50px 0 60px;
    overflow: hidden;
}

.premium-heading {
    color: #614848;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 212, 0, 0.65), 0 0 24px rgba(255, 212, 0, 0.35);
    margin-bottom: 30px;
}

/* ---------- Stage ---------- */
.premium-carousel-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.premium-carousel-stage {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Card (solid background, no blur/glass) ---------- */
.premium-card {
    position: absolute;
    width: 280px;
    background: #2a2f45;
    border: 1px solid #ffd400;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, opacity 0.5s ease, z-index 0.5s ease;
}

.premium-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.premium-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 220px;
    background: #1a1d30;
}

.premium-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.chip-green   { background: #2e9e4d; }
.chip-orange  { background: #e07a1f; }
.chip-red     { background: #d23b3b; }
.chip-purple  { background: #8a3fd1; }
.chip-blue    { background: #2f6fd6; }
.chip-pink    { background: #d63a8e; }

.premium-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.premium-sub {
    color: #b9bdcd;
    font-size: 14px;
    margin-bottom: 18px;
}

.premium-order-btn {
    background: linear-gradient(180deg, #ffd95a, #ffb700);
    color: #1a1d30;
    font-weight: 800;
    border-radius: 24px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ---------- Position states (coverflow) ---------- */
.premium-card.is-center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 5;
}

.premium-card.is-left-1 {
    transform: translateX(-230px) scale(0.85);
    opacity: 0.45;
    z-index: 4;
}

.premium-card.is-left-2 {
    transform: translateX(-420px) scale(0.7);
    opacity: 0.22;
    z-index: 3;
}

.premium-card.is-right-1 {
    transform: translateX(230px) scale(0.85);
    opacity: 0.45;
    z-index: 4;
}

.premium-card.is-right-2 {
    transform: translateX(420px) scale(0.7);
    opacity: 0.22;
    z-index: 3;
}

.premium-card.is-hidden {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* ---------- Arrows ---------- */
.premium-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #ffd400;
    background: #1a1d30;
    color: #ffd400;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.premium-arrow:hover {
    background: #ffd400;
    color: #1a1d30;
}

.premium-arrow-left { left: 0; }
.premium-arrow-right { right: 0; }

/* ---------- Dots ---------- */
.premium-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.premium-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.premium-dot.active {
    background: #ffd400;
    transform: scale(1.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .premium-card.is-left-2,
    .premium-card.is-right-2 {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .premium-heading {
        font-size: 22px;
    }

    .premium-carousel-stage {
        height: 420px;
    }

    .premium-card {
        width: 220px;
        padding: 14px;
    }

    .premium-img-box {
        height: 170px;
    }

    .premium-card.is-left-1 {
        transform: translateX(-150px) scale(0.8);
    }

    .premium-card.is-right-1 {
        transform: translateX(150px) scale(0.8);
    }

    .premium-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .premium-card.is-left-1,
    .premium-card.is-right-1 {
        opacity: 0;
        pointer-events: none;
    }
}

/* ===================== END PREMIUM CRACKERS COLLECTION CAROUSEL ===================== */






/* ===================== GOLD PILL NAVBAR HEADER ===================== */

.navbg {
    background: #0c1230;
}

.navbar-brand .nav-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.site-logo {
    color: #f0b429;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* ---------- Pill wrapper ---------- */
.nav-pill-wrap {
    border: 1.5px solid #f0b429;
    border-radius: 50px;
    padding: 4px 10px;
    display: inline-flex;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.navbar-menu .nav-item {
    list-style: none;
}

.navbar-menu .nav-link {
    color: #f0b429 !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 10px 18px !important;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}

.navbar-menu .nav-link i {
    font-size: 1rem;
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
    background: #f0b429;
    color: #0c1230 !important;
}

/* "Track Orders" small-caps style like reference */
.navbar-menu .nav-item:last-child .nav-link {
    text-transform: capitalize;
}

/* ---------- Mobile toggler ---------- */
.navbar-toggler {
    border-color: #f0b429;
}

.navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .nav-pill-wrap {
        border-radius: 16px;
        padding: 10px;
        width: 100%;
        margin-top: 14px;
    }

    .navbar-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .navbar-menu .nav-link {
        justify-content: flex-start;
        padding: 12px 16px !important;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.15rem;
    }

    .navbar-brand .nav-logo {
        width: 42px;
        height: 42px;
    }
}

