/* ============================================================
   Krishna Chocolates — Premium Design System
   Deep Chocolate Dark Theme with Molten Gold Accents
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-darkest: #0d0600;
  --bg-dark: #1a0a00;
  --bg-card: #1e0f02;
  --bg-card-hover: #2a1505;
  --gold: #d4a017;
  --gold-light: #e8c547;
  --gold-dark: #b8860b;
  --cream: #f5e6c8;
  --cream-light: #faf3e6;
  --white: #ffffff;
  --ruby: #8b0000;
  --ruby-light: #a52a2a;
  --green-whatsapp: #25D366;
  --green-whatsapp-dark: #1da851;
  --text-primary: #f5e6c8;
  --text-secondary: rgba(245, 230, 200, 0.7);
  --text-muted: rgba(245, 230, 200, 0.45);
  --glass-bg: rgba(26, 10, 0, 0.7);
  --glass-bg-heavy: rgba(13, 6, 0, 0.85);
  --glass-border: rgba(212, 160, 23, 0.15);
  --glass-border-hover: rgba(212, 160, 23, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.15);
  --shadow-gold-hover: 0 0 50px rgba(212, 160, 23, 0.3);
  --transition-fast: 0.25s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-darkest);
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--bg-darkest);
}

::-moz-selection {
  background: var(--gold);
  color: var(--bg-darkest);
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  box-shadow: 0 0 25px rgba(212, 160, 23, 0.2);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-darkest);
  border: none;
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.35);
  transform: translateY(-3px);
}

/* ============================================================
   1. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-monogram {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  line-height: 1;
  background: rgba(212, 160, 23, 0.08);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green-whatsapp);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
  animation: pulse-green 2s infinite;
}

.nav-whatsapp:hover {
  background: var(--green-whatsapp-dark);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================================
   2. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 6, 0, 0.6) 0%,
    rgba(13, 6, 0, 0.3) 40%,
    rgba(13, 6, 0, 0.5) 70%,
    rgba(13, 6, 0, 0.95) 100%
  );
  z-index: 1;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--glass-border-hover);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--cream-light);
  line-height: 1.2;
  margin-bottom: 24px;
  min-height: 1.2em;
}

.typewriter-text {
  display: inline;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  animation: blink-cursor 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 40%,
    var(--cream-light) 50%,
    var(--gold-light) 60%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   3. MARQUEE TICKER STRIP
   ============================================================ */
.marquee-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 40px;
}

.marquee-content span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 16px;
}

.marquee-dot {
  color: var(--gold) !important;
  font-size: 1.2rem !important;
  padding: 0 4px !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   3.5. VIDEOS & REELS FEED SECTION
   ============================================================ */
.video-feed-section {
  padding: 100px 0;
  background: var(--bg-darkest);
  position: relative;
  text-align: center;
}

.video-feed-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-subtitle-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: -40px;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
  background: var(--bg-card);
}

.video-card.instagram-card:hover {
  border-color: #e1306c;
  box-shadow: 0 0 30px rgba(225, 48, 108, 0.25);
}

.video-card.youtube-card:hover {
  border-color: #ff0000;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.25);
}

.video-card:hover {
  transform: translateY(-8px);
}

.reel-embed {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
  background: #000;
}

/* Responsive adjustments for video grid */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ============================================================
   4. STATS & USP SECTION
   ============================================================ */
.stats-section {
  padding: 100px 0;
  background: var(--bg-darkest);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: rgba(30, 15, 2, 0.5);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--glass-border-hover);
  background: rgba(42, 21, 5, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-number.text-only {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.usp-card {
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all var(--transition-base);
}

.usp-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-6px) scale(1.02);
  background: rgba(30, 15, 2, 0.8);
}

.usp-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.usp-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   5. PRODUCT CATEGORIES GRID
   ============================================================ */
.products-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.products-grid .product-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
}

.products-grid .product-card:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  transform-style: preserve-3d;
  border: 1px solid transparent;
  aspect-ratio: auto;
  min-height: 300px;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-hover);
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 6, 0, 0.1) 0%,
    rgba(13, 6, 0, 0.3) 50%,
    rgba(13, 6, 0, 0.85) 100%
  );
  transition: background var(--transition-base);
}

.product-card:hover .product-overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 6, 0, 0.2) 0%,
    rgba(13, 6, 0, 0.4) 50%,
    rgba(13, 6, 0, 0.9) 100%
  );
}

/* Shimmer effect */
.card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 160, 23, 0.06) 40%,
    rgba(212, 160, 23, 0.12) 50%,
    rgba(212, 160, 23, 0.06) 60%,
    transparent 100%
  );
  transition: left 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

.product-card:hover .card-shimmer {
  left: 100%;
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 3;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.product-btn {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  background: rgba(212, 160, 23, 0.05);
}

.product-btn:hover {
  background: var(--gold);
  color: var(--bg-darkest);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

/* Seasonal gradient for missing image */
.seasonal-gradient {
  background: linear-gradient(
    135deg,
    #1a0a00 0%,
    #2d1008 20%,
    #8b0000 40%,
    #d4a017 60%,
    #2d1008 80%,
    #1a0a00 100%
  );
  background-size: 400% 400%;
  animation: seasonal-shift 8s ease infinite;
}

@keyframes seasonal-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================================
   6. PRODUCT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--glass-bg-heavy);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(212, 160, 23, 0.15);
  transform: rotate(90deg);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.modal-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.modal-moq,
.modal-price {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.modal-moq {
  font-weight: 600;
  color: var(--cream);
}

.modal-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 36px;
  background: var(--green-whatsapp);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all var(--transition-base);
  animation: pulse-green 2s infinite;
}

.modal-whatsapp-btn:hover {
  background: var(--green-whatsapp-dark);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   7. HOW TO ORDER
   ============================================================ */
.how-to-section {
  padding: 100px 0;
  background: var(--bg-darkest);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.step-line {
  width: 80px;
  height: 2px;
  border-top: 2px dashed var(--gold);
  opacity: 0.4;
  margin-top: 56px;
  flex-shrink: 0;
}

.steps-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   8. ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-card-hover) 50%,
    var(--bg-card) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.store-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 30px;
}

.shelf {
  width: 85%;
  height: 20%;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.shelf-1 {
  background: linear-gradient(90deg, #8b0000, #d4a017, #b8860b, #8b0000, #d4a017);
  background-size: 200% 100%;
  animation: shelf-colors 4s linear infinite;
}

.shelf-2 {
  background: linear-gradient(90deg, #d4a017, #1e0f02, #8b0000, #d4a017, #b8860b);
  background-size: 200% 100%;
  animation: shelf-colors 5s linear infinite reverse;
}

.shelf-3 {
  background: linear-gradient(90deg, #b8860b, #8b0000, #d4a017, #1e0f02, #b8860b);
  background-size: 200% 100%;
  animation: shelf-colors 6s linear infinite;
}

@keyframes shelf-colors {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.store-text {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 16px;
  opacity: 0.8;
}

.about-image-border {
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  pointer-events: none;
}

.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-body strong {
  color: var(--gold);
  font-weight: 600;
}

.about-address {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: rgba(30, 15, 2, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.address-icon,
.timings-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.address-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.address-text strong {
  color: var(--cream);
}

.about-timings {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(30, 15, 2, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.timings-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.timings-text strong {
  color: var(--cream);
}

.about-btn {
  display: inline-flex;
}

/* ============================================================
   8.5. GOOGLE REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-darkest);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  background: var(--glass-bg);
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.google-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars .star {
  color: var(--gold);
  font-size: 1.2rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.rating-text strong {
  color: var(--cream);
}

.reviews-container-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
  align-items: start;
}

.reviews-list-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.review-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-darkest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.review-meta {
  flex-grow: 1;
}

.review-author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.review-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.review-source {
  width: 24px;
  height: 24px;
  background: #f0f0f0;
  color: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.google-g {
  font-weight: 900;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(245, 230, 200, 0.08);
  padding-top: 12px;
  margin-top: auto;
}

/* Review Form Styling */
.review-form-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-gold);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(13, 6, 0, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.star-rating-select {
  display: flex;
  gap: 8px;
}

.star-btn {
  font-size: 1.8rem;
  color: rgba(245, 230, 200, 0.2);
  cursor: pointer;
  transition: color var(--transition-fast), transform 0.1s ease;
}

.star-btn:hover {
  transform: scale(1.15);
}

.star-btn.active {
  color: var(--gold);
}

/* Segmented Control for Review Type */
.review-type-selector {
  display: flex;
  background: rgba(13, 6, 0, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  margin-bottom: 8px;
}

.type-tab {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: calc(var(--radius-sm) - 2px);
  text-align: center;
  transition: all var(--transition-fast);
  background: transparent;
  border: none;
}

.type-tab:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
}

.type-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-darkest);
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.2);
}

.review-source.source-customer {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.review-source.source-partner {
  background: var(--gold);
  color: var(--bg-darkest);
  border: 1px solid var(--gold);
}

.w-full {
  width: 100%;
}

.reviews-cta {
  text-align: center;
}

/* Toast Notification */
.review-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--bg-card);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-gold-hover);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
  max-width: 380px;
}

.review-toast.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-icon {
  font-size: 1.8rem;
}

.toast-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}

.toast-msg {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* B2B Media Queries */
@media (max-width: 1024px) {
  .reviews-container-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .reviews-container-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .review-form-card {
    position: static;
    padding: 28px 24px;
  }
}

.reviews-cta {
  text-align: center;
}

/* ============================================================
   9. INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  padding: 100px 0;
  background: var(--bg-darkest);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.insta-card {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insta-card:hover .insta-img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 6, 0, 0.4);
  backdrop-filter: blur(2px);
  transition: all var(--transition-base);
}

.insta-card:hover .insta-overlay {
  background: rgba(13, 6, 0, 0.15);
  backdrop-filter: blur(0);
}

.insta-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.instagram-handle {
  text-align: center;
  margin-bottom: 28px;
}

.instagram-handle span {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.instagram-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   10. CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--bg-darkest) 0%,
    rgba(26, 10, 0, 1) 30%,
    rgba(42, 21, 5, 1) 50%,
    rgba(26, 10, 0, 1) 70%,
    var(--bg-darkest) 100%
  );
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 160, 23, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--green-whatsapp);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 1.15rem;
  font-weight: 700;
  transition: all var(--transition-base);
  animation: pulse-green 2s infinite;
}

.cta-whatsapp-btn:hover {
  background: var(--green-whatsapp-dark);
  transform: scale(1.06);
  box-shadow: 0 0 50px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  padding: 70px 0 0;
  background: #080300;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo .logo-monogram {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
}

.footer-logo .logo-text {
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-contact ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: var(--gold);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-icon {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  margin-top: 6px;
  font-size: 0.78rem !important;
  font-style: italic;
}

/* ============================================================
   12. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: 1px solid var(--glass-border);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--bg-card);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================================
   13. ANIMATIONS
   ============================================================ */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Reveal classes for scroll animation (GSAP handles the animation, 
   but these provide initial hidden state) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ============================================================
   14. RESPONSIVE DESIGN
   ============================================================ */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid .usp-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid .product-card:nth-child(1) {
    grid-column: span 2;
  }

  .about-grid {
    gap: 40px;
  }
}

/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px) {
  /* Navbar hamburger */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darkest);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav-open .nav-menu {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .nav-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-whatsapp span {
    display: none;
  }

  .nav-whatsapp {
    padding: 10px;
    border-radius: 50%;
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-link::after {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Stats */
  .stats-section {
    padding: 70px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .usp-grid .usp-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Products */
  .products-section {
    padding: 70px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid .product-card:nth-child(1) {
    grid-column: span 1;
  }

  .product-card {
    min-height: 260px;
  }

  /* Steps */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .step-line {
    width: 2px;
    height: 40px;
    border-top: none;
    border-left: 2px dashed var(--gold);
    margin-top: 0;
  }

  /* About */
  .about-section {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Instagram */
  .instagram-section {
    padding: 70px 0;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* CTA */
  .cta-banner {
    padding: 70px 0;
  }

  .cta-whatsapp-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Float */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

/* ---------- Small Mobile (480px) ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .usp-card {
    padding: 28px 20px;
  }

  .product-card {
    min-height: 220px;
  }

  .product-name {
    font-size: 1.2rem;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .about-headline {
    font-size: 1.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cta-headline {
    font-size: 1.4rem;
  }

  .cta-whatsapp-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .modal {
    padding: 36px 24px;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .modal-whatsapp-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-monogram {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- SEO Utility ---------- */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

