/* ==========================================================================
   Kamadhenu Honey Farms - Premium Luxury E-Commerce Stylesheet
   ========================================================================== */



/* Design Tokens & System Variables */
:root {
  /* Colors */
  --primary-gold: #D8A64F;
  --dark-gold: #B6852F;
  --cream-bg: #F8F5EF;
  --warm-white: #FFFFFF;
  --luxury-charcoal: #2E2E2E;
  --soft-beige: #F3E7D0;
  
  --gold-glow: rgba(216, 166, 79, 0.3);
  --gold-glow-soft: rgba(216, 166, 79, 0.1);
  --charcoal-trans: rgba(46, 46, 46, 0.05);
  
  /* Glassmorphism settings */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-hover: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(216, 166, 79, 0.2);
  --glass-border-hover: rgba(182, 133, 47, 0.45);
  --glass-shadow: 0 10px 40px -10px rgba(46, 46, 46, 0.08);
  --luxury-shadow: 
    0 2.8px 2.2px rgba(182, 133, 47, 0.034),
    0 6.7px 5.3px rgba(182, 133, 47, 0.048),
    0 12.5px 10px rgba(182, 133, 47, 0.06),
    0 22.3px 17.9px rgba(182, 133, 47, 0.072),
    0 41.8px 33.4px rgba(182, 133, 47, 0.086),
    0 100px 80px rgba(182, 133, 47, 0.12);
  --soft-shadow: 0 10px 30px rgba(46, 46, 46, 0.05);
  
  /* Typography */
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Borders */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Header heights */
  --header-height: 80px;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--luxury-charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Subheadings & Section intros */
.section-subtitle {
  text-align: center;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gold);
  margin-bottom: 0.75rem;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--soft-beige);
  border-radius: 5px;
  border: 2px solid var(--cream-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Common Layout Utilities */
section {
  padding: 120px 5%;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--warm-white);
  border: 1px solid var(--primary-gold);
}

.btn-gold:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(182, 133, 47, 0.25);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
  background: var(--warm-white);
  color: var(--luxury-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-charcoal {
  background-color: var(--luxury-charcoal);
  color: var(--warm-white);
}

.btn-charcoal:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.badge-luxury {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background-color: var(--soft-beige);
  color: var(--dark-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--primary-gold);
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(248, 245, 239, 0.85);
  backdrop-filter: blur(20px);
  height: 75px;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--soft-shadow);
}

.nav-container {
  max-width: 1380px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--luxury-charcoal);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.logo-text span:first-child {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--luxury-charcoal);
}

.logo-text .logo-highlight {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary-gold);
  margin-top: 1px;
}

.logo-bee {
  width: 32px;
  height: 32px;
  fill: var(--primary-gold);
  animation: float 3s ease-in-out infinite;
}

header nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(15px, 2.2vw, 30px);
  align-items: center;
  height: 100%;
}

.nav-menu li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu li a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--luxury-charcoal);
  position: relative;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-gold);
  transition: var(--transition-fast);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

/* Nav Icons (Cart, Wishlist) */
.nav-icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid rgba(216, 166, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-charcoal);
  box-shadow: var(--soft-shadow);
  transition: var(--transition-fast);
}

.nav-icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 5px 15px rgba(216, 166, 79, 0.15);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--dark-gold);
  color: var(--warm-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--warm-white);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.header-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background-color: var(--luxury-charcoal);
  border-radius: 5px;
  transition: var(--transition-fast);
}

/* Mobile Fullscreen Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--cream-bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  margin-bottom: 2rem;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 600;
  color: var(--luxury-charcoal);
}

.mobile-nav ul li a:hover {
  color: var(--primary-gold);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 80%;
  max-width: 300px;
}

/* Toggle state for Hamburger Animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  background-color: var(--cream-bg);
  background-image: radial-gradient(rgba(216, 166, 79, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--luxury-charcoal);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-content h1 span {
  font-weight: 400;
  font-style: italic;
  color: var(--dark-gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3.5rem;
  max-width: 540px;
}

/* ==========================================================================
   Premium Trust Bar
   ========================================================================== */
.premium-trust-bar {
  background: var(--primary-gold);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.premium-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-white);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.premium-trust-bar .trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--warm-white);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Media with interactive floating and parallax */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  width: 100%;
  max-width: 480px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--luxury-shadow);
  border: 1px solid var(--glass-border);
  position: relative;
  background: var(--soft-beige);
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(46, 46, 46, 0) 60%, rgba(46, 46, 46, 0.35) 100%);
  z-index: 1;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s ease-out;
}

.hero-media:hover .hero-img-wrapper img {
  transform: scale(1.1);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--glass-shadow);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-float-card-1 {
  bottom: 40px;
  left: -30px;
}

.hero-float-card-2 {
  top: 60px;
  right: -30px;
  animation-delay: -3s;
}

.float-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gold);
}

.float-icon-circle svg {
  width: 22px;
  height: 22px;
}

.float-card-text p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}

.float-card-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--luxury-charcoal);
}

/* ==========================================================================
   The Purity Promise Section
   ========================================================================== */
.purity {
  background-color: var(--warm-white);
}

.purity-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.purity-content h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.purity-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-gold);
  margin-top: 1rem;
}

.purity-story {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.purity-story-highlight {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark-gold);
  border-left: 3px solid var(--primary-gold);
  padding-left: 20px;
  margin: 2rem 0;
}

.purity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Luxury Glassmorphic Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
  opacity: 0;
  transition: var(--transition-fast);
}

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

.glass-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--soft-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.glass-card:hover .card-icon {
  background: var(--primary-gold);
  color: var(--warm-white);
  transform: rotateY(180deg);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.glass-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--luxury-charcoal);
}

.glass-card p {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================================================
   Featured Products Section (E-Commerce Suite)
   ========================================================================== */
.products {
  background-color: var(--cream-bg);
}

.products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

/* E-Commerce Search & Filter Layout */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 166, 79, 0.22);
  border-radius: 50px;
  padding: 8px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 400px;
}

.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--primary-gold);
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--luxury-charcoal);
  background: transparent;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--luxury-charcoal);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.filter-tab:hover {
  color: var(--primary-gold);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: #000;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(216, 166, 79, 0.3);
}

/* E-Commerce Grid Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Premium Product Card Design */
.product-card {
  background: linear-gradient(180deg, #fdfbfa 0%, #f7f4ee 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 166, 79, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 55px rgba(182, 133, 47, 0.15), 0 10px 25px rgba(0, 0, 0, 0.04);
  border-color: rgba(216, 166, 79, 0.6);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(18, 16, 12, 0.85);
  color: var(--primary-gold);
  border: 1px solid rgba(216, 166, 79, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 3;
}

.wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216, 166, 79, 0.15);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition-fast);
}

.wishlist-btn:hover {
  transform: scale(1.1);
  color: #e25c5c;
}

.wishlist-btn.active {
  color: #e25c5c;
}

.wishlist-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Product Media Layout (Gradients & fallbacks) */
.product-media {
  height: 300px;
  width: 100%;
  position: relative;
  background: radial-gradient(circle at center, #fbf8f3 0%, #ecdcb9 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='28' viewBox='0 0 16 28'%3E%3Cpath d='M8 0L16 4.5V13.5L8 18L0 13.5V4.5L8 0z' fill='none' stroke='%23d8a64f' stroke-width='0.4' stroke-opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.65;
  z-index: 1;
}

.product-media::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 208, 127, 0.48) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 0;
  animation: productGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes productGlowPulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1.2; }
}

.product-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px 15px 55px 15px;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(182, 133, 47, 0.15));
}

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

/* Card Gallery Thumbnails Overlay */
.card-thumb-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 6px);
  display: flex;
  gap: 8px;
  background: rgba(46, 46, 46, 0.45);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 4;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .card-thumb-nav,
.upcoming-card:hover .card-thumb-nav {
  opacity: 1;
  transform: translate(-50%, 0);
}

.thumb-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--soft-beige);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.thumb-nav-btn:hover,
.thumb-nav-btn.active {
  border-color: var(--primary-gold);
  transform: scale(1.15);
}

.thumb-nav-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fallback placeholder overlay */
.media-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(243, 231, 208, 0.7) 0%, rgba(216, 166, 79, 0.2) 100%);
  color: var(--dark-gold);
}

.media-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

.media-placeholder span {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  font-size: 1.4rem;
  color: var(--luxury-charcoal);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 1.25rem;
  height: 40px;
  overflow: hidden;
}

/* Weight Selector Pill buttons */
.weight-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.weight-pill {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(216, 166, 79, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--luxury-charcoal);
  background: transparent;
  transition: var(--transition-fast);
}

.weight-pill:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-1px);
}

.weight-pill.active {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: #000;
  border-color: var(--primary-gold);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(216, 166, 79, 0.25);
}

.price-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(216, 166, 79, 0.15);
}

.price-display {
  display: flex;
  flex-direction: column;
}

.price-display span {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
}

.price-display h4 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  color: var(--dark-gold);
  font-weight: 700;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(216, 166, 79, 0.3);
  border-radius: 50px;
  padding: 4px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--soft-beige);
  color: var(--dark-gold);
}

.qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}

.product-actions .btn {
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  border-radius: 50px;
  gap: 8px;
}

.product-actions .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Add to Cart primary button */
.btn-add-cart {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: var(--warm-white);
  border: 1px solid var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 133, 47, 0.35);
}

/* Side-by-side WhatsApp + Meesho row */
.product-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions-row .btn {
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  gap: 6px;
  background: transparent;
  transition: all 0.3s ease;
}

.product-actions-row .btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* WhatsApp Outline Button */
.product-actions-row .wa-order-single-trigger {
  border: 1.5px solid rgba(39, 174, 96, 0.4);
  color: #27ae60;
}

.product-actions-row .wa-order-single-trigger:hover {
  background: rgba(39, 174, 96, 0.08);
  border-color: #27ae60;
  transform: translateY(-2px);
}

/* Meesho Outline Button */
.product-actions-row .meesho-buy-trigger {
  border: 1.5px solid rgba(216, 166, 79, 0.35);
  color: var(--luxury-charcoal);
}

.product-actions-row .meesho-buy-trigger:hover {
  background: rgba(216, 166, 79, 0.08);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.btn-wa-order {
  grid-column: span 2;
  background-color: #25D366;
  border-color: #25D366;
  color: var(--warm-white);
}

.btn-wa-order:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

/* ==========================================================================
   Why Our Honey Is Different Section
   ========================================================================== */
.why-us {
  background-color: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 4rem;
}

.why-card {
  background: var(--cream-bg);
  border: 1px solid rgba(216, 166, 79, 0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  background: var(--warm-white);
  border-color: var(--primary-gold);
  box-shadow: var(--glass-shadow);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--soft-beige);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition-fast);
}

.why-card:hover .why-card-icon {
  background: var(--primary-gold);
  color: var(--warm-white);
  transform: scale(1.1);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.85rem;
  color: #666;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
  background-color: var(--cream-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2.5rem 0 3.5rem 0;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  position: relative;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--glass-border);
  background: var(--soft-beige);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px 20px;
  background: linear-gradient(360deg, rgba(46, 46, 46, 0.8) 0%, rgba(46, 46, 46, 0) 100%);
  color: var(--warm-white);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-info span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-gold);
}

.gallery-item-info h4 {
  font-size: 1.1rem;
  margin-top: 4px;
}

/* ==========================================================================
   Honey Journey Timeline Section
   ========================================================================== */
.journey {
  background-color: var(--warm-white);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 4rem;
}

.journey-card {
  background: var(--cream-bg);
  border: 1px solid rgba(216, 166, 79, 0.15);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--luxury-shadow);
  border-color: var(--primary-gold);
}

.journey-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--primary-gold);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.journey-card h3 {
  font-size: 1.25rem;
  color: var(--luxury-charcoal);
  margin-bottom: 0.75rem;
}

.journey-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.journey-card img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 140px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

/* ==========================================================================
   Nature's Liquid Gold (Benefits)
   ========================================================================== */
.benefits {
  background-color: var(--cream-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 4rem;
}

.benefit-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  border: 1px solid rgba(216, 166, 79, 0.15);
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  perspective: 1000px;
  transform-style: preserve-3d;
  position: relative;
}

/* ==========================================================================
   Product Cards & Grid System
   ========================================================================== */
.products {
  background-color: var(--warm-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

/* Duplicate product card definition removed for clean layout rules */

/* Dynamic Glossy Glare Overlay */
.product-card::after,
.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
  mix-blend-mode: overlay;
}

.product-card:hover::after,
.glass-card:hover::after {
  opacity: 1;
}

/* Duplicate product card hover definition removed */

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: var(--luxury-shadow);
}

.benefit-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--soft-beige);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-card:hover .benefit-circle {
  background: var(--primary-gold);
  color: var(--warm-white);
}

.benefit-circle svg {
  width: 30px;
  height: 30px;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  background-color: var(--warm-white);
  overflow: hidden;
}

.carousel-outer {
  margin-top: 4rem;
  position: relative;
  width: 100%;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.testimonial-card {
  width: 400px;
  flex-shrink: 0;
}

.stars-rating {
  display: flex;
  gap: 4px;
  color: var(--primary-gold);
  margin-bottom: 1.25rem;
}

.stars-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-content {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--luxury-charcoal);
  margin-bottom: 1.5rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--soft-beige);
  border: 2px solid var(--primary-gold);
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-details h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--luxury-charcoal);
}

.customer-details p {
  font-size: 0.75rem;
  color: #888;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft-beige);
  transition: var(--transition-fast);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-gold);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background-color: var(--cream-bg);
}

.faq-container {
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.faq-item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  border: 1px solid rgba(216, 166, 79, 0.15);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-header h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--luxury-charcoal);
  padding-right: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft-beige);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: var(--glass-shadow);
}

.faq-item.active .faq-icon {
  background: var(--primary-gold);
  color: var(--warm-white);
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(248, 245, 239, 0.3);
}

.faq-content-inner {
  padding: 0 30px 24px 30px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background-color: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--soft-beige);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-circle svg {
  width: 22px;
  height: 22px;
}

.contact-details h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-details p,
.contact-details a {
  font-size: 0.95rem;
  color: #666;
}

.contact-socials {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-bg);
  color: var(--luxury-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 166, 79, 0.1);
}

.social-circle:hover {
  background: var(--primary-gold);
  color: var(--warm-white);
  transform: translateY(-3px);
}

.social-circle svg {
  width: 18px;
  height: 18px;
}

/* Luxury Maps */
.map-wrapper {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--soft-shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form Styles */
.contact-form-container {
  padding: 40px;
}

.form-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

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

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(216, 166, 79, 0.3);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--cream-bg);
  color: var(--luxury-charcoal);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background-color: var(--warm-white);
  border-color: var(--dark-gold);
  box-shadow: 0 0 0 4px rgba(216, 166, 79, 0.15);
}

textarea.form-control {
  resize: none;
  height: 140px;
}

/* ==========================================================================
   Final CTA Banner Section
   ========================================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: var(--warm-white);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.final-cta-content .btn {
  background: var(--warm-white);
  color: var(--luxury-charcoal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
  padding: 16px 36px;
}

.final-cta-content .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background-color: var(--cream-bg);
}

.final-cta-content .btn svg {
  color: #25D366;
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background-color: var(--luxury-charcoal);
  color: #bbb;
  padding: 80px 5% 30px 5%;
  font-size: 0.9rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-col.brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col.brand-col h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.footer-col.brand-col p {
  line-height: 1.6;
}

.footer-col.brand-col .footer-socials {
  display: flex;
  gap: 12px;
}

.footer-col.brand-col .social-circle {
  background: rgba(255, 255, 255, 0.05);
  color: var(--warm-white);
  border-color: transparent;
}

.footer-col.brand-col .social-circle:hover {
  background: var(--primary-gold);
  color: var(--luxury-charcoal);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-info p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-info svg {
  width: 18px;
  height: 18px;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
  color: #777;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* ==========================================================================
   E-Commerce Overlays: Cart Drawer
   ========================================================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(46, 46, 46, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 460px;
  height: 100vh;
  background-color: var(--cream-bg);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 24px 30px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-header h3 svg {
  width: 22px;
  height: 22px;
  color: var(--primary-gold);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-charcoal);
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  background: var(--soft-beige);
  color: var(--dark-gold);
}

.cart-close-btn svg {
  width: 16px;
  height: 16px;
}

/* Cart Items List */
.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-message {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  gap: 15px;
  text-align: center;
}

.cart-empty-message svg {
  width: 64px;
  height: 64px;
  color: var(--soft-beige);
}

.cart-item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid rgba(216, 166, 79, 0.15);
  display: flex;
  gap: 16px;
  position: relative;
  box-shadow: var(--soft-shadow);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--soft-beige);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--luxury-charcoal);
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 2px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cart-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-gold);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(216, 166, 79, 0.2);
  border-radius: 30px;
  padding: 2px;
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  font-size: 0.85rem;
}

.cart-item-qty input {
  width: 24px;
  font-size: 0.85rem;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #bbb;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: #e25c5c;
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

/* Cart Footer Drawer Panel */
.cart-footer {
  padding: 30px;
  background: var(--warm-white);
  border-top: 1px solid var(--glass-border);
}

.coupon-row {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.coupon-row input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid rgba(216, 166, 79, 0.3);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.coupon-row input:focus {
  border-color: var(--primary-gold);
}

.coupon-row .btn {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.coupon-feedback {
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: none;
}

.coupon-feedback.success {
  color: #27ae60;
  display: block;
}

.coupon-feedback.error {
  color: #c0392b;
  display: block;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.summary-row.total-row {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--luxury-charcoal);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 166, 79, 0.15);
}

.summary-row.total-row .total-amount {
  color: var(--dark-gold);
}

.cart-checkout-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 14px;
}

/* ==========================================================================
   E-Commerce Overlays: Checkout & Order Tracker Modals
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(46, 46, 46, 0.5);
  backdrop-filter: blur(8px);
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: var(--cream-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 900px;
  height: 90vh;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

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

.checkout-header {
  padding: 24px 40px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.checkout-close-btn:hover {
  background: var(--soft-beige);
}

.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.checkout-billing h3,
.checkout-summary h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--soft-beige);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.checkout-form-grid .form-group.full-width {
  grid-column: span 2;
}

.payment-options {
  margin-top: 1.5rem;
}

.payment-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.payment-option-card {
  border: 1px solid rgba(216, 166, 79, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.payment-option-card:hover {
  border-color: var(--primary-gold);
}

.payment-option-card.active {
  border-color: var(--primary-gold);
  background-color: var(--soft-beige);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-gold);
  opacity: 0;
  transition: var(--transition-fast);
}

.payment-option-card.active .payment-radio::after {
  opacity: 1;
}

.payment-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-text p {
  font-size: 0.75rem;
  color: #777;
}

/* Checkout side Summary */
.checkout-summary-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(216, 166, 79, 0.15);
  box-shadow: var(--soft-shadow);
}

.checkout-summary-items {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 5px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  align-items: center;
}

.checkout-summary-item .item-name {
  font-weight: 600;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary-item .item-qty-size {
  color: #888;
}

.checkout-summary-item .item-price {
  font-weight: 700;
}

.checkout-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
  background-color: #25D366;
  border-color: #25D366;
  color: var(--warm-white);
  padding: 14px;
  font-size: 1rem;
}

.checkout-submit-btn:hover {
  background-color: #128C7E;
  border-color: #128C7E;
}

/* Order Tracker Modal Setup */
.tracker-modal {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

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

.tracker-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tracker-search-row {
  display: flex;
  gap: 10px;
  margin: 1.5rem 0;
}

.tracker-search-row input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(216, 166, 79, 0.3);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.tracker-search-row input:focus {
  border-color: var(--primary-gold);
}

.tracker-results {
  margin-top: 2rem;
  display: none;
  text-align: left;
}

.tracker-results.active {
  display: block;
}

.tracker-status-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-beige);
}

/* Tracker Timeline Visual */
.tracker-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 30px;
}

.tracker-timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 8px;
  width: 2px;
  background-color: var(--soft-beige);
}

.tracker-status-step {
  position: relative;
}

.tracker-dot {
  position: absolute;
  top: 4px;
  left: -27px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--warm-white);
  border: 3px solid var(--soft-beige);
  transition: var(--transition-fast);
}

.tracker-status-step.completed .tracker-dot {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(216, 166, 79, 0.2);
}

.tracker-status-step.active .tracker-dot {
  background-color: var(--warm-white);
  border-color: var(--primary-gold);
  animation: pulse-ring 2s infinite;
}

.tracker-status-text h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #bbb;
}

.tracker-status-step.completed h5,
.tracker-status-step.active h5 {
  color: var(--luxury-charcoal);
}

.tracker-status-text p {
  font-size: 0.75rem;
  color: #999;
}

/* ==========================================================================
   Mobile-Only Persistent Bottom Order Bar & Animations
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 0;
  z-index: 990;
  box-shadow: 0 -8px 30px rgba(46,46,46,0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-bar a,
.mobile-bottom-bar button {
  flex: 1;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--luxury-charcoal);
  background: transparent;
  border-right: 1px solid rgba(216,166,79,0.15);
  transition: var(--transition-fast);
  border-radius: 0 !important;
  box-shadow: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-bottom-bar a:last-child,
.mobile-bottom-bar button:last-child {
  border-right: none;
}

.mobile-bottom-bar a svg,
.mobile-bottom-bar button svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.mobile-bottom-bar .sticky-wa-btn {
  background: #25D366;
  color: #fff;
}

.mobile-bottom-bar .sticky-wa-btn:hover {
  background: #128C7E;
}

.mobile-bottom-bar .sticky-meesho-btn {
  background: var(--luxury-charcoal);
  color: #fff;
}

.mobile-bottom-bar .sticky-meesho-btn:hover {
  background: #111;
}

.mobile-bottom-bar .sticky-call-btn {
  background: var(--soft-beige);
  color: var(--dark-gold);
}

/* ==========================================================================
   Animation Timings (Intersection Observer Hooks)
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-fade-up {
  transform: translateY(40px);
}

.reveal-fade-left {
  transform: translateX(-40px);
}

.reveal-fade-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Custom Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 166, 79, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(216, 166, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 166, 79, 0);
  }
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 5px rgba(216, 166, 79, 0.2), 0 0 20px rgba(216, 166, 79, 0.1); }
  50% { box-shadow: 0 0 15px rgba(216, 166, 79, 0.4), 0 0 40px rgba(216, 166, 79, 0.15); }
}

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

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes scale-in {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes wa-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
}

@keyframes text-gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slide-up-fade {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Premium Gold Shimmer Effect on Section Headings
   ========================================================================== */
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold), var(--primary-gold));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  margin: 1rem auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   Desktop Floating WhatsApp Button
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 980;
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite, bounce-subtle 3s ease-in-out infinite;
  transition: var(--transition-fast);
}

.floating-wa-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.floating-wa-btn svg {
  width: 30px;
  height: 30px;
}

.floating-wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--luxury-charcoal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.floating-wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--luxury-charcoal);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--glass-border);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 979;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--soft-shadow);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-gold);
  color: var(--warm-white);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(216, 166, 79, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Premium Hover Micro-Animations & 3D Realism Effects
   ========================================================================== */
   
/* Realistic Metallic Gold Foil Text */
.gold-foil-text {
  background: linear-gradient(
    -45deg,
    #cf9e46 0%,
    #e8c173 25%,
    #fdf0a6 40%,
    #ffffff 50%,
    #fdf0a6 60%,
    #cf9e46 80%,
    #b3812d 100%
  );
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: foil-shimmer 8s ease infinite;
  display: inline-block;
}

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

/* Depth Parallax Particles (Bokeh) */
.depth-particles {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  pointer-events: none;
  z-index: 1;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(216, 166, 79, 0.4) 2px, transparent 4px),
    radial-gradient(circle at 75% 65%, rgba(216, 166, 79, 0.3) 3px, transparent 6px),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.5) 4px, transparent 8px),
    radial-gradient(circle at 10% 85%, rgba(216, 166, 79, 0.5) 2px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 6px, transparent 12px);
  background-size: 150px 150px, 200px 200px, 250px 250px, 120px 120px, 300px 300px;
  filter: blur(1px);
  animation: float-particles 30s linear infinite;
  opacity: 0.6;
}

@keyframes float-particles {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-50px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
/* Animated gold border glow on glass-cards */
.glass-card {
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent 30%, rgba(216, 166, 79, 0.3) 50%, transparent 70%);
  background-size: 400% 400%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.glass-card:hover::before {
  opacity: 1;
  animation: gradient-shift 3s ease infinite;
}

/* Logo bee icon hover wiggle */
.logo:hover .logo-bee {
  animation: wiggle 0.5s ease-in-out;
}

/* Nav link hover shimmer */
.nav-menu li a:hover {
  color: var(--primary-gold);
}

/* Product card image shimmer overlay on load */
.product-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  z-index: 2;
  animation: shimmer 2s ease-in-out 1;
  pointer-events: none;
}

/* Benefit card icon bounce on hover */
.benefit-card:hover .benefit-circle {
  animation: bounce-subtle 0.6s ease;
}

/* Journey card step number pulse */
.journey-card:hover .journey-icon {
  animation: glow-pulse 2s ease-in-out infinite;
  background: var(--primary-gold);
  color: var(--warm-white);
  border-color: var(--primary-gold);
}

/* Why-card stagger animation */
.why-card.reveal.active {
  animation: slide-up-fade 0.8s ease forwards;
}

/* FAQ item smooth border glow when hovered */
.faq-item:hover {
  border-color: rgba(216, 166, 79, 0.4);
  box-shadow: 0 4px 20px rgba(216, 166, 79, 0.08);
}

/* Social circle icons pop on hover */
.social-circle:hover svg {
  animation: scale-in 0.3s ease forwards;
}

/* Premium badge floating text shimmer */
.badge-luxury {
  background: linear-gradient(90deg, var(--soft-beige) 0%, rgba(216, 166, 79, 0.3) 50%, var(--soft-beige) 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite, float 4s ease-in-out infinite;
}

/* Section subtitle letter spacing animation */
.section-subtitle {
  position: relative;
}

/* Trust bar items subtle animation */
.premium-trust-bar .trust-item {
  transition: var(--transition-fast);
}

.premium-trust-bar .trust-item:hover {
  transform: scale(1.05);
}

.premium-trust-bar .trust-item svg {
  transition: var(--transition-fast);
}

.premium-trust-bar .trust-item:hover svg {
  animation: bounce-subtle 0.5s ease;
}

/* Testimonial card quote mark styling */
.testimonial-card {
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 4rem;
  font-family: var(--font-headings);
  color: rgba(216, 166, 79, 0.1);
  line-height: 1;
  pointer-events: none;
}

/* Carousel dot hover effect */
.carousel-dot:hover {
  background: var(--primary-gold);
  transform: scale(1.3);
}

/* Filter tab micro-animation */
.filter-tab:hover {
  transform: translateY(-1px);
}

.filter-tab.active {
  animation: scale-in 0.3s ease;
}

/* Gallery tab hover micro-animation */
.gallery-tab {
  transition: var(--transition-fast);
}

.gallery-tab:hover {
  transform: translateY(-2px);
}

/* Form focus glow animation */
.form-control:focus {
  animation: glow-pulse 2s ease-in-out infinite;
}

/* Final CTA floating particles effect */
.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Header scroll transition enhancement */
header.scrolled .logo-bee {
  animation: none;
}

/* Counter animation container */
.stat-counter {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gold);
  line-height: 1;
}

/* Hide floating WA and back-to-top on mobile (bottom bar replaces them) */
@media (max-width: 768px) {
  .floating-wa-btn {
    display: none;
  }
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
  h2::after {
    width: 45px;
  }
}

/* ==========================================================================
   Preloader Styles
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.honey-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--soft-beige);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite, glow-pulse 2s infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--luxury-charcoal);
  animation: float 3s ease-in-out infinite;
}

body:not(.loaded) {
  overflow: hidden;
}

/* ==========================================================================
   Premium Stats Showcase Styles
   ========================================================================== */
.stats-showcase {
  background: linear-gradient(135deg, var(--luxury-charcoal) 0%, #1a1a1a 100%);
  color: var(--warm-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(216, 166, 79, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 166, 79, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(216, 166, 79, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(216, 166, 79, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
}

.stat-item p {
  color: #bbb;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   Media Queries & Responsive Styling Breaks
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
    width: 100%;
  }
  .purity-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .purity-content h2 {
    text-align: center;
  }
  .purity-content h2::after {
    margin: 1rem auto 0 auto;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .checkout-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 4%;
  }
  .nav-menu, .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
  .checkout-modal {
    height: 95vh;
  }
  .checkout-body {
    padding: 20px;
  }
  .mobile-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .premium-trust-bar .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .purity-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .product-media {
    height: 240px;
  }
}

/* ==========================================================================
   Choose Your Preferred Way To Buy Styling
   ========================================================================== */
.buy-choices {
  background-color: var(--cream-bg);
  padding: 100px 5%;
  border-top: 1px solid rgba(216, 166, 79, 0.15);
  border-bottom: 1px solid rgba(216, 166, 79, 0.15);
}

.choices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
}

.choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 45px 35px;
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  border: 1px solid rgba(216, 166, 79, 0.15);
  box-shadow: var(--soft-shadow);
  transition: var(--transition-smooth);
}

.choice-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: var(--luxury-shadow);
}

.choice-card h3 {
  font-size: 1.3rem;
  font-family: var(--font-headings);
  color: var(--luxury-charcoal);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.benefits-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.benefits-list li svg {
  width: 18px;
  height: 18px;
  color: #27ae60;
  flex-shrink: 0;
}

.card-action-btn,
.card-action-btns {
  width: 100%;
  margin-top: auto;
}

.card-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.final-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.final-cta-buttons .btn {
  padding: 14px 28px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .choices-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .choice-card {
    padding: 35px 25px;
  }
}

/* ==========================================================================
   Upcoming Products Section Styling
   ========================================================================== */
/* ==========================================================================
   UPCOMING PRODUCTS — 3D CINEMATIC PREMIUM REDESIGN
   ========================================================================== */

/* ----- Keyframe Library ----- */
@keyframes upcomingGlowPulse {
  0%, 100% { opacity: 0.18; transform: scale(1);   filter: blur(45px); }
  50%       { opacity: 0.38; transform: scale(1.25); filter: blur(55px); }
}
@keyframes upcomingGlowPulse2 {
  0%, 100% { opacity: 0.12; transform: scale(1.1);  filter: blur(50px); }
  50%       { opacity: 0.28; transform: scale(0.85); filter: blur(40px); }
}
@keyframes shimmerRingExpand {
  0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0.7; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}
@keyframes upcomingHexDrift {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0.04; }
  50%  { transform: translateY(-18px) rotate(4deg);  opacity: 0.09; }
  100% { transform: translateY(0)   rotate(0deg);   opacity: 0.04; }
}
@keyframes upcomingBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
@keyframes upcomingImageKenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  25%  { transform: scale(1.06) translate(-1%, 0.5%); }
  50%  { transform: scale(1.1)  translate(1%, -0.5%); }
  75%  { transform: scale(1.06) translate(-0.5%, 1%); }
  100% { transform: scale(1)    translate(0, 0); }
}
@keyframes upcomingCardEntrance {
  0%   { opacity: 0; transform: perspective(1000px) rotateY(20deg) translateY(40px); }
  100% { opacity: 1; transform: perspective(1000px) rotateY(0deg)  translateY(0); }
}
@keyframes upcomingCard2Entrance {
  0%   { opacity: 0; transform: perspective(1000px) rotateY(-20deg) translateY(40px); }
  100% { opacity: 1; transform: perspective(1000px) rotateY(0deg)   translateY(0); }
}
@keyframes upcomingParticleFloat {
  0%         { transform: translateY(0)    translateX(0)    scale(1);   opacity: 0.7; }
  33%        { transform: translateY(-25px) translateX(10px)  scale(1.2); opacity: 1; }
  66%        { transform: translateY(-15px) translateX(-8px)  scale(0.9); opacity: 0.6; }
  100%       { transform: translateY(-40px) translateX(5px)  scale(0.5); opacity: 0; }
}
@keyframes upcomingScanLine {
  0%   { top: -5%; opacity: 0; }
  10%  { opacity: 0.06; }
  90%  { opacity: 0.06; }
  100% { top: 105%; opacity: 0; }
}
@keyframes glowRingRotate {
  0%   { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes upcomingCounterFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-6px) scale(1.05); }
}

/* ----- Section Base ----- */
.upcoming-products {
  background: linear-gradient(145deg, #0a0a0a 0%, #111111 40%, #0d0b08 70%, #0a0a0a 100%);
  padding: 140px 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(216, 166, 79, 0.18);
  border-bottom: 1px solid rgba(216, 166, 79, 0.18);
}

/* Animated Honeycomb Grid */
.upcoming-products::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 2L2 18v36l28 16 28-16V18L30 2zm0 4l24 14v30L30 64 6 50V20L30 6z' fill='none' stroke='%23D8A64F' stroke-opacity='0.035' stroke-width='0.8'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  animation: upcomingHexDrift 12s ease-in-out infinite;
}

/* Ambient Glow Blob 1 — Top Right */
.upcoming-products::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(216,166,79,0.18) 0%, transparent 70%);
  top: -10%; right: -10%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 1;
  animation: upcomingGlowPulse 8s ease-in-out infinite;
}

/* Ambient Glow Blob 2 — Bottom Left */
.upcoming-glow-blob2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216,166,79,0.12) 0%, transparent 70%);
  bottom: -10%; left: -8%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
  animation: upcomingGlowPulse2 10s ease-in-out infinite;
}

/* Animated Scan Line (cinematic effect) */
.upcoming-scan-line {
  position: absolute;
  left: 0; top: -5%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(216,166,79,0.08), rgba(216,166,79,0.12), rgba(216,166,79,0.08), transparent);
  pointer-events: none;
  z-index: 1;
  animation: upcomingScanLine 14s linear infinite;
}

/* Particle Canvas Layer */
.upcoming-particle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.upcoming-products .container {
  position: relative;
  z-index: 2;
}

.upcoming-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5.5rem;
  text-align: center;
}

.upcoming-header h2 {
  color: var(--warm-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 40px rgba(216,166,79,0.12);
}

.upcoming-header h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), #FFD07F, var(--primary-gold), transparent);
  margin: 18px auto 0 auto;
  box-shadow: 0 0 12px rgba(216,166,79,0.5);
}

.upcoming-subheading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #a0a0a0;
  max-width: 620px;
  line-height: 1.7;
}

/* 3D Grid with perspective */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
  max-width: 1140px;
  margin: 0 auto;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

/* 3D Glassmorphic Luxury Card */
.upcoming-card {
  background: linear-gradient(160deg, rgba(28,24,16,0.8) 0%, rgba(16,16,16,0.75) 60%, rgba(22,20,14,0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 166, 79, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.55),
    0 0 0 1px rgba(216,166,79,0.04) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.upcoming-card:hover {
  border-color: rgba(216, 166, 79, 0.5);
  box-shadow:
    0 35px 70px rgba(0,0,0,0.6),
    0 0 60px rgba(216,166,79,0.12),
    0 0 0 1px rgba(216,166,79,0.08) inset,
    0 1px 0 rgba(255,255,255,0.1) inset;
}

/* Animated Top Shimmer Border */
.upcoming-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 300%; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(216,166,79,0.3) 20%,
    rgba(255,220,120,0.9) 40%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,220,120,0.9) 60%,
    rgba(216,166,79,0.3) 80%,
    transparent 100%);
  z-index: 5;
  transition: none;
  opacity: 0;
}

.upcoming-card:hover::before {
  animation: upcomingTopShimmer 1.2s ease forwards;
  opacity: 1;
}
@keyframes upcomingTopShimmer {
  0%   { left: -100%; opacity: 1; }
  100% { left: 0%;    opacity: 0.6; }
}

/* Animated Conic Glow Ring Behind Card */
.upcoming-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(216,166,79,0.6) 60deg,
    transparent 120deg,
    transparent 180deg,
    rgba(216,166,79,0.4) 240deg,
    transparent 300deg,
    transparent 360deg
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: glowRingRotate 4s linear infinite;
}

.upcoming-card:hover::after {
  opacity: 1;
}

/* Badge Container */
.upcoming-badges-container {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}

/* Badge styling — floating animation */
.upcoming-badge {
  background: rgba(12, 11, 8, 0.88);
  color: var(--primary-gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), 0 0 8px rgba(216,166,79,0.1);
  border: 1px solid rgba(216, 166, 79, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: max-content;
  text-transform: uppercase;
  animation: upcomingBadgeFloat 3.5s ease-in-out infinite;
}

.upcoming-badge:nth-child(2) {
  animation-delay: 0.8s;
}

/* Specific Badge colors */
.upcoming-badge.innovation-badge {
  color: #FFF;
  border-color: rgba(255,200,80,0.25);
  background: linear-gradient(135deg, rgba(182,133,47,0.75), rgba(140,100,30,0.7));
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.upcoming-badge.premium-badge {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #FFD07F 50%, var(--dark-gold) 100%);
  color: #0a0800;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(216,166,79,0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

/* 3D Media Placeholder Area */
.upcoming-media-placeholder {
  height: 340px;
  width: 100%;
  position: relative;
  background: radial-gradient(ellipse at 40% 60%, #1e1a10 0%, #0d0c09 60%, #050505 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(216, 166, 79, 0.12);
  padding: 20px;
  text-align: center;
  transform-style: preserve-3d;
}

/* Shimmer ring pulse */
.upcoming-shimmer-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(216,166,79,0.5);
  transform: translate(-50%,-50%) scale(0.6);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.upcoming-shimmer-ring:nth-child(1) { animation: shimmerRingExpand 3.5s ease-out infinite 0s; }
.upcoming-shimmer-ring:nth-child(2) { animation: shimmerRingExpand 3.5s ease-out infinite 1.15s; }
.upcoming-shimmer-ring:nth-child(3) { animation: shimmerRingExpand 3.5s ease-out infinite 2.3s; }

/* Central glow pulse */
.placeholder-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(216,166,79,0.3) 0%, rgba(216,166,79,0.08) 50%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 2;
  transition: transform 1s ease, opacity 1s ease;
  animation: upcomingGlowPulse 5s ease-in-out infinite;
}

.upcoming-card:hover .placeholder-glow {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 1.2;
}

.honeycomb-pattern-svg {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.upcoming-card:hover .honeycomb-pattern-svg {
  transform: scale(1.08) rotate(3deg);
}

.upcoming-card:hover .honeycomb-pattern-svg path {
  stroke: rgba(216,166,79,0.3);
}

/* SVG Icon — 3D float */
.placeholder-icon {
  position: relative;
  z-index: 3;
  width: 95px; height: 95px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: upcomingCounterFloat 4s ease-in-out infinite;
}

.placeholder-icon svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 12px rgba(216,166,79,0.3));
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.7s ease;
}

.upcoming-card:hover .placeholder-icon svg {
  transform: translateY(-8px) scale(1.1) rotateY(15deg);
  filter: drop-shadow(0 8px 20px rgba(216,166,79,0.55));
}

.placeholder-label {
  position: relative;
  z-index: 3;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  color: var(--primary-gold);
  margin-top: 6px;
  font-weight: 500;
  text-shadow: 0 0 15px rgba(216,166,79,0.4);
}

.placeholder-status {
  position: relative;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #666;
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Card Content Details */
.upcoming-content {
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.upcoming-content h3 {
  font-size: 1.65rem;
  color: var(--warm-white);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  transition: text-shadow 0.4s ease;
}

.upcoming-card:hover .upcoming-content h3 {
  text-shadow: 0 2px 25px rgba(216,166,79,0.15);
}

.upcoming-subtitle {
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--primary-gold);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  opacity: 0.88;
}

.upcoming-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Why It's Special Box */
.why-special-box {
  background: rgba(216, 166, 79, 0.03);
  border-left: 2px solid var(--primary-gold);
  padding: 20px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(216, 166, 79, 0.05);
  border-right: 1px solid rgba(216, 166, 79, 0.05);
  border-bottom: 1px solid rgba(216, 166, 79, 0.05);
}

.box-heading {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--warm-white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.why-special-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-special-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c8c8c8;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
}

.why-special-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* Action CTA Area */
.upcoming-action {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.btn-early-access {
  width: 100%;
  padding: 15px 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(216, 166, 79, 0.15);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
}

.btn-early-access:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216, 166, 79, 0.35);
}

/* Gold Button Override */
.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: #000;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFD07F 0%, var(--primary-gold) 100%);
}

.action-caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #777;
  text-align: center;
  line-height: 1.4;
  max-width: 90%;
}

/* Flagship / Standout Card — enhanced glow */
.upcoming-card.flagship-card {
  border: 1px solid rgba(216, 166, 79, 0.32);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.6),
    0 0 45px rgba(216,166,79,0.1),
    0 0 0 1px rgba(216,166,79,0.06) inset;
}

.upcoming-card.flagship-card:hover {
  border-color: rgba(216, 166, 79, 0.75);
  box-shadow:
    0 35px 75px rgba(0,0,0,0.65),
    0 0 80px rgba(216,166,79,0.22),
    0 0 0 1px rgba(216,166,79,0.12) inset;
}

/* Flagship Ribbon — with shimmer */
.flagship-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: linear-gradient(135deg, #FFD07F 0%, var(--primary-gold) 50%, var(--dark-gold) 100%);
  color: #0a0800;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 38px;
  transform: rotate(45deg);
  z-index: 6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.45), 0 0 20px rgba(216,166,79,0.3);
  width: 128px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  overflow: hidden;
}

.flagship-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: upcomingTopShimmer 2.5s ease infinite 1s;
}

/* Cinematic Ken Burns image animation */
.upcoming-media-placeholder img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 4;
  transition: opacity 0.8s ease;
  animation: upcomingImageKenBurns 20s ease-in-out infinite;
}

.upcoming-card:hover .upcoming-media-placeholder img {
  animation-play-state: paused;
}

/* Image crossfade on thumb switch */
.upcoming-main-img.fade-switch {
  animation: upcomingImgFade 0.5s ease;
}
@keyframes upcomingImgFade {
  0%   { opacity: 0.3; transform: scale(0.98); }
  100% { opacity: 1;   transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 580px;
    perspective: none;
  }

  .upcoming-products {
    padding: 100px 5%;
  }

  .upcoming-card {
    transform-style: flat !important;
  }
}

@media (max-width: 576px) {
  .upcoming-products {
    padding: 80px 4%;
  }

  .upcoming-content {
    padding: 26px 22px;
  }

  .upcoming-media-placeholder {
    height: 290px;
  }

  .placeholder-icon {
    width: 80px;
    height: 80px;
  }

  .why-special-box {
    padding: 16px 18px;
  }

  .upcoming-shimmer-ring {
    display: none;
  }

  .flagship-ribbon {
    font-size: 0.55rem;
    right: -36px;
    top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .upcoming-products::before,
  .upcoming-scan-line,
  .upcoming-glow-blob2,
  .upcoming-shimmer-ring,
  .placeholder-glow,
  .upcoming-badge,
  .upcoming-media-placeholder img,
  .placeholder-icon,
  .flagship-ribbon::before {
    animation: none !important;
  }
}

/* ==========================================================================
   Add to Cart Celebration CSS (Premium Honey Farms Theme)
   ========================================================================== */

/* Fullscreen Canvas overlay */
#cart-confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
}

/* Flying product image */
.cart-fly-img {
  position: fixed;
  z-index: 100000;
  pointer-events: none;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(216, 166, 79, 0.8), 0 0 50px rgba(255, 208, 127, 0.4);
  object-fit: cover;
  transition: all 0.85s cubic-bezier(0.25, 1, 0.3, 1);
  transform: translate(0, 0) scale(1) rotate(0deg);
}

/* Screen glow ripple */
.cart-glow-ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 208, 127, 0.18) 0%, rgba(216, 166, 79, 0.04) 50%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.3s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 1.3s ease-out;
  z-index: 9999;
  opacity: 1;
}

.cart-glow-ripple.active {
  transform: translate(-50%, -50%) scale(8);
  opacity: 0;
}

/* First-item extra strong ripple */
.cart-glow-ripple.active.first-item {
  background: radial-gradient(circle, rgba(255, 208, 127, 0.28) 0%, rgba(216, 166, 79, 0.08) 50%, transparent 70%);
  transform: translate(-50%, -50%) scale(12);
  transition-duration: 1.6s;
}

/* Cart Button Glowing Effect */
.open-cart-btn.cart-glow-active {
  animation: cartArrivalGlow 1s ease-out forwards;
}

@keyframes cartArrivalGlow {
  0% {
    filter: drop-shadow(0 0 0px rgba(216, 166, 79, 0));
    border-color: rgba(216, 166, 79, 0.2);
  }
  20% {
    filter: drop-shadow(0 0 15px rgba(255, 208, 127, 0.95)) drop-shadow(0 0 5px rgba(216, 166, 79, 0.8));
    border-color: rgba(255, 208, 127, 0.8);
    transform: scale(1.15);
  }
  100% {
    filter: drop-shadow(0 0 0px rgba(216, 166, 79, 0));
    border-color: rgba(216, 166, 79, 0.2);
    transform: scale(1);
  }
}

/* Cart Icon bounce & badge pulse */
.cart-icon-bounce {
  animation: cartIconBounce 0.65s cubic-bezier(0.25, 1.25, 0.5, 1.25) forwards;
}

.cart-badge-pulse {
  animation: cartBadgePulse 0.75s cubic-bezier(0.25, 1.25, 0.5, 1.25) forwards;
}

@keyframes cartIconBounce {
  0% { transform: scale(1); }
  30% { transform: scale(0.7) translateY(4px); }
  60% { transform: scale(1.25) translateY(-6px); }
  85% { transform: scale(0.92) translateY(1.5px); }
  100% { transform: scale(1); }
}

@keyframes cartBadgePulse {
  0% { transform: scale(1); }
  40% {
    transform: scale(1.7);
    background-color: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 18px var(--primary-gold), 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 800;
  }
  100% { transform: scale(1); }
}

/* Landing Ring Burst */
.cart-ring-burst {
  position: fixed;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100001;
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 0.6s ease-out;
}

.cart-ring-burst.active {
  transform: translate(-50%, -50%) scale(2.2);
  opacity: 0;
}

/* Premium Glassmorphic Toast Notification */
#cart-celebration-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(18, 16, 12, 0.88);
  border: 1px solid rgba(216, 166, 79, 0.38);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 15px rgba(216, 166, 79, 0.12) inset;
  border-radius: 14px;
  padding: 18px 26px;
  color: var(--warm-white);
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  min-width: 330px;
  max-width: 440px;
  transform: translateY(120px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.45s ease;
}

#cart-celebration-toast.toast-show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toast-icon-wrap {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(216,166,79,0.3));
}

.toast-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toast-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.02em;
}

.toast-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #e0e0e0;
}

.toast-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-gold), #FFD07F);
  transform-origin: left;
  transform: scaleX(1);
}

.toast-progress-shrink {
  animation: toastProgressShrink 3s linear forwards;
}

@keyframes toastProgressShrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #cart-celebration-toast {
    bottom: auto;
    top: 20px;
    right: 15px;
    left: 15px;
    min-width: 0;
    max-width: none;
    transform: translateY(-120px) scale(0.95);
    padding: 14px 20px;
  }
  
  #cart-celebration-toast.toast-show {
    transform: translateY(0) scale(1);
  }
}
