/* =============================================
   LUXURYWAY V8 - Complete Styles
   ============================================= */

:root {
  --bg-dark: #050a06;
  --bg-gradient: #1a3c24;
  --accent-gold: #D4AF37;
  --light-gold: #F2D574;
  --glass-bg: rgba(5, 10, 6, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.03);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-gradient) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #fff;
}

body {
  padding-top: 60px;
}

/* =============================================
   STICKY GLASS HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-toggle:active {
  background: rgba(255,255,255,0.1);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.header-brand {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
}

.brand-name-white { color: #fff; }
.brand-name-gold { color: var(--accent-gold); }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-toggle {
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
}

.search-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1001;
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.open { left: 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu nav a:active { color: var(--accent-gold); }

/* =============================================
   WHATSAPP FAB
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  position: relative;
}

.whatsapp-fab a::before,
.whatsapp-fab a::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-fab a::after {
  inset: -12px;
  animation-delay: 0.5s;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* =============================================
   SHIMMER SKELETON
   ============================================= */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================
   GRID CONTROLS
   ============================================= */
.grid-controls {
  display: flex;
  gap: 8px;
}

.grid-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.grid-btn:active {
  transform: scale(0.95);
}

.grid-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

/* =============================================
   BRANDS GRID
   ============================================= */
.brands-grid {
  display: grid;
  gap: 16px;
}

.brands-grid.brands-cols-2 { grid-template-columns: repeat(2, 1fr); }
.brands-grid.brands-cols-3 { grid-template-columns: repeat(3, 1fr); }
.brands-grid.brands-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 600px) {
  .brands-grid.brands-cols-3,
  .brands-grid.brands-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-card-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px 12px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s;
}

.brand-card-minimal:active {
  transform: scale(0.98);
}

.brand-logo-container {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .brand-logo-container {
    width: 140px;
    height: 140px;
  }
}

.brand-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-initials-fallback {
  display: none;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--accent-gold);
  font-size: 1.75rem;
  font-weight: 700;
}

.brand-card-info {
  text-align: center;
}

.brand-card-info h3 {
  color: #fff;
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.brand-card-info p {
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-size: 0.8rem;
}

/* =============================================
   PRODUCTS GRID - THEMED DARK
   ============================================= */
.products-grid {
  display: grid;
  gap: 12px;
}

.products-grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.products-grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.products-grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 600px) {
  .products-grid.grid-cols-3,
  .products-grid.grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s;
}

.product-card:active {
  transform: scale(0.98);
}

.product-card .product-image {
  position: relative;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-info {
  padding: 12px;
}

.product-card .product-info h3 {
  font-size: 0.85rem;
  color: #fff;
  margin: 0;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 16px;
  background: rgba(0,0,0,0.3);
  text-align: center;
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand-white { color: #fff; }
.footer-brand-gold { color: var(--accent-gold); }

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer-social a:active {
  background: var(--accent-gold);
  color: #000;
}

.footer-copyright {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* =============================================
   HOMEPAGE STYLES
   ============================================= */

/* ── HERO SECTION ── */
.home-hero {
  text-align: center;
  padding: 32px 16px 20px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0 0 10px;
  opacity: 0.85;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-subline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 20px;
  max-width: 340px;
  line-height: 1.5;
}

/* Featured brand strip (wraps to fit screen) */
.hero-brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible;
  padding: 0 0 12px;
  justify-content: center;
}

.hero-brands-strip::-webkit-scrollbar { display: none; }

.hero-brand-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--glass-bg, rgba(255,255,255,0.06));
  border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
  border-radius: 12px;
  text-decoration: none;
  scroll-snap-align: center;
  transition: all 0.2s;
  min-width: 72px;
}

.hero-brand-chip:active {
  transform: scale(0.96);
  border-color: var(--accent-gold);
}

.hero-brand-chip img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-brand-chip span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  white-space: nowrap;
}

/* ── HERO WHATSAPP CTA ROW ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #0a3d1a 0%, #1a6b35 55%, #0f4d22 100%);
  border: 1px solid rgba(26, 107, 53, 0.5);
  border-radius: 50px;
  color: #c8f0d4;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 4px 18px rgba(10, 61, 26, 0.5);
  white-space: nowrap;
}

.hero-cta-wa:hover {
  background: linear-gradient(135deg, #0f5224 0%, #22883f 55%, #145f2a 100%);
  box-shadow: 0 6px 24px rgba(10, 61, 26, 0.7);
  transform: translateY(-1px);
  color: #e0f8e8;
}

.hero-cta-wa:active {
  transform: translateY(0);
}

.hero-cta-divider {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}

[data-theme="light"] .hero-cta-wa {
  background: linear-gradient(135deg, #1a6b35 0%, #27a349 55%, #1a6b35 100%);
  border-color: rgba(26, 107, 53, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(26, 107, 53, 0.3);
}

[data-theme="light"] .hero-cta-divider {
  color: rgba(0,0,0,0.35);
}

@media (max-width: 480px) {
  .hero-cta-wa { padding: 10px 18px; font-size: 0.78rem; }
  .hero-cta-divider { font-size: 0.68rem; }
}

/* ── TRUST STATS BAR ── */
.trust-stats-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin: 0 16px 16px;
  padding: 14px 12px;
  background: var(--glass-bg, rgba(255,255,255,0.06));
  border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 4px;
  text-align: center;
}

.trust-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--accent-primary, #D4AF37);
}
/* Star gets its own gold fill independent of theme accent (silver in dark) */
.trust-stat-icon--star {
  color: #D4AF37;
}

.trust-stat-text {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-align: center;
}

.trust-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  justify-self: center;
}

@media (max-width: 380px) {
  .trust-stats-bar {
    padding: 10px 8px;
  }
  .trust-stat-text {
    font-size: 0.55rem;
  }
}

/* ── TRUST STATS CTA ROW ── */
.trust-stats-cta-row {
  display: flex;
  justify-content: center;
  margin: -4px 16px 16px;
}

.trust-stats-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D4AF37;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.06);
  transition: background 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.trust-stats-cta-link:hover,
.trust-stats-cta-link:active {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.45);
  gap: 9px;
}

/* ── FOMO COUNTER ── */
.fomo-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  opacity: 0.75;
}

.fomo-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: fomo-pulse 2s ease-in-out infinite;
}

@keyframes fomo-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* ── SECTION SUBTITLES ── */
.section-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 2px 0 0;
  font-weight: 400;
}

/* ── NEW BADGE ON BRAND CARDS ── */
.brand-link-card {
  position: relative;
}

.new-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--accent-gold), #F2D574);
  color: #000;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  z-index: 2;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

/* ── SEARCH SECTION WRAPPER ── */
.home-search-section {
  padding: 0 16px 16px;
}

/* ── SOCIAL ICONS (kept) ── */
.profile-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.profile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.profile-social a:active {
  background: var(--accent-gold);
  color: #000;
}

/* ── FOOTER TRUST ROW ── */
.footer-trust-row {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

/* ── SWIPE HINT ── */
.swipe-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
  animation: swipe-fade 2.5s ease-in-out infinite;
  letter-spacing: 0.5px;
}

@keyframes swipe-fade {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 0.85; transform: translateX(3px); }
}

/* About Section - Professional Minimalist */
.home-about {
  margin: 0 16px 40px;
  padding: 24px;
  background: var(--card-bg, rgba(255,255,255,0.05));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left; /* Keeps the list easy to read */
}

.home-about h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold, #d4af37);
  font-size: 1.2rem;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-about p {
  color: rgba(255,255,255,0.7);
  line-height: 2; /* Increased line height for a cleaner look */
  margin: 0;
  font-size: 0.9rem;
}

/* Styles the bold parts in your primary gold color */
.home-about p b {
  color: var(--accent-gold, #d4af37);
  font-weight: 600;
}

/* Video Section */
.home-video-section {
  width: 100%;
  margin-bottom: 24px;
}

.home-video-section:empty,
.home-video-section[style*="display: none"],
.home-video-section[style*="display:none"] {
  margin: 0;
  padding: 0;
}

.home-video-section video {
  width: 100%;
  display: block;
}

/* Category Brand Section */
.home-category-section {
  padding: 0 16px;
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin: 0;
}

.view-all-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
}

/* Brand Links Grid - 150% SIZE */
.brand-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.brand-links-grid > * {
  flex: 0 0 130px;
}

.brand-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px 10px;
  background: linear-gradient(145deg, rgba(40,40,40,0.45) 0%, rgba(20,20,20,0.25) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.04);
}

.brand-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}

.brand-link-card:active {
  transform: scale(0.97);
}

/* Gold bottom accent on hover */
.brand-link-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold, #D4AF37), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.brand-link-card:hover::after {
  opacity: 1;
}

/* BRAND LINK LOGO */
.brand-link-logo {
  width: 90px;
  height: 80px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-link-logo img {
  max-width: 85%;
  max-height: 75%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand-link-card:hover .brand-link-logo img {
  transform: scale(1.05);
}

.brand-link-card span {
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
}

/* =============================================
   CAROUSEL - Clickable with contained images
   ============================================= */
.home-carousel-section {
  padding: 0 16px;
  margin-bottom: 40px;
}

.home-carousel-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.carousel-container {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.2s;
}

.carousel-item:active {
  transform: scale(0.98);
}

.carousel-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #111;
  display: block;
}

/* =============================================
   WHATSAPP FINDER STYLES - COMPACT VERSION
   ============================================= */
.whatsapp-finder-section {
  padding: 24px 16px 0; /* Zero bottom padding to touch the footer */
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.whatsapp-finder-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--glass-bg, rgba(255, 255, 255, 0.08));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.15));
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Light Mode Visibility Fix */
body.light-mode .whatsapp-finder-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .finder-text-main {
  color: #000;
}

body.light-mode .finder-text-sub {
  color: rgba(0, 0, 0, 0.6);
}

.whatsapp-finder-card:hover {
  border-color: #25D366;
  background: var(--glass-bg-hover, rgba(255, 255, 255, 0.12));
}

.finder-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.finder-icon-wrapper {
  width: 42px;
  height: 42px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.finder-text-main {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
}

.finder-text-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  margin-top: 2px;
}

.finder-arrow {
  color: #25D366;
  font-size: 1.1rem;
}

/* FOOTER MARGIN FIX: Pulls footer up to touch the box */
.site-footer {
  margin-top: 0 !important;
  padding-top: 1.5rem;
}
   
   
/* =============================================
   CAROUSEL FULLSCREEN MODAL
   ============================================= */
.carousel-fullscreen-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.carousel-fullscreen-modal.open {
  opacity: 1;
  visibility: visible;
}

.carousel-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-modal-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 20px 80px;
}

.carousel-modal-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel-modal-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav-btn:active {
  background: rgba(255,255,255,0.2);
}

.carousel-modal-nav span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* =============================================
   ESSENTIALS SECTION
   ============================================= */
.home-essentials-section {
  padding: 0 16px;
  margin-bottom: 40px;
}

.home-essentials-section h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.essential-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  margin-bottom: 14px;
  border-radius: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 120px;
}

.essential-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}

.essential-card-content {
  position: relative;
  z-index: 1;
}

.essential-card h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.essential-card-arrow {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* =============================================
   PAGE CONTROLS
   ============================================= */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin: 0;
}

.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 4px 0 0;
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 14px 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar { display: none; }

.breadcrumbs a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
}

.breadcrumbs .separator {
  margin: 0 8px;
  color: rgba(255,255,255,0.3);
}

.breadcrumbs .current {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.pagination-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
/* Enhanced Pagination Styles - Add to your existing CSS */

/* Pagination ellipsis */
.pagination-ellipsis {
  padding: 8px 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  user-select: none;
}

/* First/Last page buttons styling */
.pagination-first,
.pagination-last {
  font-weight: bold;
  letter-spacing: -1px;
}

/* Manual page input wrapper */
.pagination-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Page number input field */
.pagination-input {
  width: 60px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.pagination-input:focus {
  border-color: var(--accent-gold, #d4af37);
  background: rgba(255, 255, 255, 0.15);
}

.pagination-input::-webkit-outer-spin-button,
.pagination-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pagination-input[type=number] {
  -moz-appearance: textfield;
}

/* Go button */
.pagination-go-btn {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-go-btn:hover {
  background: var(--accent-gold, #d4af37);
  border-color: var(--accent-gold, #d4af37);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .pagination-input-wrapper {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .pagination-input {
    width: 50px;
    padding: 5px 8px;
  }
  
  .pagination-go-btn {
    padding: 5px 12px;
  }
  
  /* Hide first/last buttons on very small screens if needed */
  .pagination-first,
  .pagination-last {
    display: none;
  }
}

@media (min-width: 641px) {
  .pagination-first,
  .pagination-last {
    display: inline-flex;
  }
}
/* =============================================
   HOME SEARCH BAR (THEME AWARE)
   ============================================= */
.home-search-container {
  margin: 20px auto 0;
  max-width: 500px;
  width: 90%;
}

.search-trigger-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Use system variables for theme switching */
  background: var(--glass-bg, rgba(255, 255, 255, 0.08)); 
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.15));
  border-radius: 50px; /* Pill shape matches search page */
  padding: 5px 5px 5px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Explicit Light Theme Overrides */
body.light-mode .search-trigger-bar {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.search-trigger-bar:hover {
  border-color: var(--accent-gold);
  background: var(--glass-bg-hover, rgba(255, 255, 255, 0.12));
}

.search-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted, rgba(255, 255, 255, 0.45));
  font-size: 0.9rem;
}

body.light-mode .search-content {
  color: rgba(0, 0, 0, 0.5); /* Darker text for light mode */
}

.search-icon-svg {
  opacity: 0.6;
}

.search-icon-btn {
  background: var(--accent-gold);
  color: #000;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============================================
   HOMEPAGE REDESIGN — Trust-First Layout
   ============================================= */

/* Trust Headline (after hero) */
.trust-headline-section {
  margin: 0 16px 16px;
  padding: 16px 20px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  text-align: center;
}

.trust-headline-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin: 0 0 6px;
  line-height: 1.4;
}

.trust-headline-link {
  font-size: 13px;
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
}

.trust-headline-link:hover {
  text-decoration: underline;
}

/* ═══ UNIFIED TRUST PROOF STRIPS (They Paid / We Delivered / They Loved It) ═══ */

.trust-proof-strip-section {
  padding: 16px 0 8px;
}

.trust-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 4px;
}

.trust-strip-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-primary, #fff);
  margin: 0;
}

.trust-strip-link {
  color: #D4AF37;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.trust-strip-sub {
  padding: 0 16px;
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--text-muted, rgba(255,255,255,0.5));
}

.trust-strip-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 8px;
  scrollbar-width: none;
}

.trust-strip-scroll::-webkit-scrollbar {
  display: none;
}

/* Individual proof card — CONSISTENT SIZE for all strips */
.trust-strip-card {
  flex-shrink: 0;
  width: 130px;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.trust-strip-card:active {
  transform: scale(0.96);
}

.trust-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  opacity: 1 !important;
}

/* Top-left badge (amount or country) — green bg, white text */
.trust-badge-tl {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
}

/* Bottom-left badge (PAID / DELIVERED) — green bg, white text */
.trust-badge-bl {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: #22c55e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Purple variant for delivery proofs */
.trust-badge-purple {
  background: rgba(124, 58, 237, 0.85);
}

/* Gold variant for testimonials */
.trust-badge-gold {
  background: rgba(212, 175, 55, 0.9);
  color: #000;
}

/* ══════════════════════════════════════════════════
   CUSTOMER STORIES — Unified Trust Slider + Lightbox
   (shared between homepage and product page)
   ══════════════════════════════════════════════════ */
.customer-stories-section {
  padding: 16px 16px 8px;
}

.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cs-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-primary, #fff);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cs-verified-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
}

.cs-see-all {
  color: var(--accent-gold, #D4AF37);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}
.cs-see-all:hover { opacity: 0.7; }

/* Filter pills */
.cs-filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cs-filter-pills::-webkit-scrollbar { display: none; }

.cs-pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
  background: transparent;
  color: var(--text-muted, rgba(255,255,255,0.5));
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}
.cs-pill:hover { border-color: rgba(212,175,55,0.3); color: var(--text-primary, #fff); }
.cs-pill.active {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  border-color: rgba(212,175,55,0.4);
  color: var(--accent-gold, #D4AF37);
}

@keyframes cs-card-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.cs-gallery { position: relative; width: 100%; }

.cs-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 8px;
  scrollbar-width: none;
}
.cs-track::-webkit-scrollbar { display: none; }

.cs-card {
  flex-shrink: 0;
  width: 130px;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(30,30,30,0.6) 50%, rgba(212,175,55,0.05) 100%);
  border: 1px solid var(--glass-border, rgba(255,255,255,0.06));
  scroll-snap-align: start;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-card:hover {
  transform: scale(1.04);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cs-card img,
.cs-card video { width: 100%; height: 100%; object-fit: cover; }

/* Badge: top-left (amount for payments, flag+label for deliveries) */
.cs-badge-tl {
  position: absolute;
  top: 6px; left: 6px;
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
}

/* Badge: bottom-left */
.cs-badge-bl {
  position: absolute;
  bottom: 6px; left: 6px;
  background: #22c55e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cs-badge-purple { background: rgba(124, 58, 237, 0.85); }
.cs-badge-gold { background: rgba(212, 175, 55, 0.9); color: #000; }
.cs-badge-video { background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); font-size: 11px; padding: 3px 7px; }

/* Play overlay for video cards */
.cs-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2);
  opacity: 0; transition: opacity 0.25s;
}
.cs-card:hover .cs-play-overlay { opacity: 1; }
.cs-play-icon {
  width: 42px; height: 42px;
  background: rgba(212,175,55,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.cs-play-icon svg { width: 16px; height: 16px; color: #000; margin-left: 2px; }

/* ── Customer Stories Lightbox ── */
.cs-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 3000;
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cs-lightbox.active { display: flex; }

.cs-lb-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.cs-lb-kind-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cs-lb-kind-payment { background: #22c55e; color: #fff; }
.cs-lb-kind-delivery { background: rgba(124,58,237,0.9); color: #fff; }
.cs-lb-kind-review { background: rgba(212,175,55,0.9); color: #000; }

.cs-lb-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; flex-shrink: 0;
}
.cs-lb-close:hover { background: rgba(255,255,255,0.2); }

.cs-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.25s;
}
.cs-lb-nav:hover { background: rgba(212,175,55,0.85); color: #000; border-color: transparent; }
.cs-lb-nav.prev { left: 12px; }
.cs-lb-nav.next { right: 12px; }
.cs-lb-nav svg { width: 22px; height: 22px; }

.cs-lb-content {
  max-width: 92vw; max-height: 70vh;
  display: flex; align-items: center; justify-content: center;
}
.cs-lb-content img, .cs-lb-content video {
  max-width: 100%; max-height: 70vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cs-lb-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 20px 20px 24px;
  z-index: 10;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.cs-lb-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.cs-lb-see-all {
  display: flex; align-items: center; gap: 6px;
  background: var(--accent-gold, #d4af37);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(212,175,55,0.3);
}
.cs-lb-see-all:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.45);
}
.cs-lb-see-all svg { flex-shrink: 0; }

/* Hint text in lightbox */
.cs-lb-hint {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  margin: 0;
  text-align: center;
  letter-spacing: 0.2px;
}

/* Mobile adjustments for homepage customer stories */
@media (max-width: 480px) {
  .cs-card { width: 115px; height: 155px; }
  .cs-lb-nav { width: 36px; height: 36px; }
  .cs-lb-nav.prev { left: 6px; }
  .cs-lb-nav.next { right: 6px; }
}

/* Live Transaction Feed */
.live-feed-section {
  margin: 0 16px 20px;
  padding: 12px 16px;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  cursor: pointer;
}

.live-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  animation: live-feed-pulse 2s ease-out infinite;
  box-shadow: 0 0 6px rgba(37,211,102,0.5);
}

@keyframes live-feed-pulse {
  0% { opacity: 1; box-shadow: 0 0 6px rgba(37,211,102,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 12px rgba(37,211,102,0.3); }
  100% { opacity: 1; box-shadow: 0 0 6px rgba(37,211,102,0.5); }
}

.live-feed-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, rgba(255,255,255,0.85));
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.live-feed-text.exit {
  opacity: 0;
  transform: translateY(-10px);
}

.live-feed-text.enter {
  opacity: 0;
  transform: translateY(10px);
}

/* Delivery Proofs Carousel */
.delivery-proofs-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Home Guarantees Section */
.home-guarantees-section {
  padding: 24px 16px;
}

.home-guarantees-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-primary, #fff);
  margin-bottom: 16px;
}

.guarantee-cards-home {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantee-card-home {
  background: var(--glass-bg, rgba(255,255,255,0.03));
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card, none);
}

.guarantee-icon-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: var(--glass-bg, rgba(255,255,255,0.05));
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
  color: var(--accent-primary, #D4AF37);
}

.guarantee-card-home h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin-bottom: 6px;
}

.guarantee-card-home p {
  font-size: 13px;
  color: var(--text-muted, rgba(255,255,255,0.6));
  line-height: 1.5;
}

/* "Now Browse With Confidence" Divider */
.confidence-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
}

.confidence-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary, rgba(212,175,55,0.3)), transparent);
  opacity: 0.4;
}

.confidence-divider span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--accent-primary, #D4AF37);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Email Capture Section */
.email-capture-section {
  margin: 8px 16px 24px;
  padding: 24px 20px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  text-align: center;
}

.email-capture-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-primary, #fff);
  margin-bottom: 6px;
}

.email-capture-section > p {
  font-size: 13px;
  color: var(--text-muted, rgba(255,255,255,0.5));
  margin-bottom: 16px;
}

.email-capture-form {
  display: flex;
  gap: 8px;
}

.email-capture-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-border, rgba(255,255,255,0.12));
  background: var(--input-bg, rgba(255,255,255,0.05));
  color: var(--text-primary, #fff);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.email-capture-form input[type="email"]:focus {
  border-color: rgba(212,175,55,0.4);
}

.email-capture-form input[type="email"]::placeholder {
  color: var(--text-muted, rgba(255,255,255,0.3));
}

.email-capture-form button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #D4AF37;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.1s ease;
}

.email-capture-form button:active {
  transform: scale(0.97);
}

.email-capture-form button:hover {
  background: #C5A028;
}

/* Product Page — Proof Strip */
.product-proof-strip {
  margin: 16px 0;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.product-proof-strip .proof-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-proof-strip .proof-strip-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: #fff;
}

.product-proof-strip .proof-strip-link {
  font-size: 11px;
  color: #D4AF37;
  text-decoration: none;
}

.product-proof-strip .proof-strip-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.product-proof-strip .proof-strip-scroll::-webkit-scrollbar {
  display: none;
}

.product-proof-strip .proof-strip-item {
  flex-shrink: 0;
  width: 100px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.06);
}

.product-proof-strip .proof-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-proof-strip .proof-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 6px;
  background: rgba(0,0,0,0.7);
  color: #4ade80;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
}

/* =============================================
   HOMEPAGE VIDEO SECTION
   ============================================= */

.home-video-section {
  padding: 0 0 16px;
}

.home-video-section .section-header {
  padding: 0 16px 10px;
}

.home-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px;
}

.home-video-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: var(--card-bg, rgba(30,30,30,0.6));
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
}

.home-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Delivery Proof Strip Section */
.delivery-proof-strip-section {
  padding: 16px 0 8px;
}

.delivery-strip-heading {
  color: var(--text-primary, #fff);
}

.delivery-strip-sub {
  color: var(--text-muted, rgba(255,255,255,0.5));
}

#delivery-proof-strip {
  scrollbar-width: none;
}
#delivery-proof-strip::-webkit-scrollbar {
  display: none;
}

/* Live Feed Bar (theme-aware) */
.live-feed-bar {
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.15);
}

.live-feed-text-el {
  color: var(--text-primary, rgba(255,255,255,0.85));
  font-weight: 600;
}