﻿/* ============================================
   BRIGHT CANDLE HUB - Premium Redesign
   Modern Luxury CSS Framework
   ============================================ */

:root {
  /* Primary Colors - Luxury Rose Gold & Burgundy */
  --bg: #FFFAFB;
  --bg-soft: #FFF0F2;
  --bg-dark: #F5E6E8;
  --gold: #FFD9E0;
  --gold-light: #FFE4E9;
  --gold-dark: #E11B4C;
  --rose-gold: #B76E79;
  --rose-gold-light: #D4A5A5;
  
  /* Text Colors */
  --ink: #500D1F;
  --charcoal: #3D0A18;
  --muted: #965C6A;
  --muted-light: #B8899A;
  
  /* Utility Colors */
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.65);
  --glass-dark: rgba(80, 13, 31, 0.05);
  
  /* Shadows - Enhanced */
  --shadow-sm: 0 4px 20px rgba(80, 13, 31, 0.08);
  --shadow-md: 0 20px 40px rgba(17, 17, 17, 0.06);
  --shadow-lg: 0 30px 60px rgba(17, 17, 17, 0.12);
  --shadow-xl: 0 40px 80px rgba(80, 13, 31, 0.15);
  --shadow-glow: 0 0 40px rgba(255, 217, 224, 0.3);
  --shadow: 0 20px 40px rgba(80, 13, 31, 0.08);
  
  /* Typography */
  --serif: "Lumanosimo", cursive;
  --accent-serif: "Cormorant Garamond", serif;
  --sans: "Inter", Arial, sans-serif;
  
  /* Animation */
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection {
  background: var(--gold);
  color: var(--ink);
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

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

button, input, textarea, select {
  font: inherit;
  font-family: var(--sans);
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.loader-logo {
  width: 100px;
  height: auto;
  animation: flamePulse 1.2s infinite alternate;
  filter: drop-shadow(0 0 20px rgba(225, 27, 76, 0.3));
}

.loader-mark p {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
#bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(225, 27, 76, 0.08), transparent 70%);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  z-index: 101;
  will-change: transform;
  transition: opacity 0.5s ease;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: var(--transition);
}

/* Announcement Bar */
.announcement {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
  padding: 10px 0;
}

.announcement-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 20s linear infinite;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 clamp(20px, 5vw, 80px);
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  min-height: 70px;
  background: rgba(255, 250, 251, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(103, 49, 71, 0.08);
  box-shadow: var(--shadow-sm);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--charcoal);
  z-index: 1002;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 60px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-right: clamp(20px, 3vw, 40px);
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-menu a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu a.active {
  color: var(--gold-dark);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1003;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.78rem;
}

/* Primary Button - Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #FFE4E9 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(225, 27, 76, 0.15);
}

.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 15px 40px rgba(225, 27, 76, 0.25);
  transform: translateY(-3px);
}

/* Dark Button */
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(61, 10, 24, 0.2);
}

.btn-dark:hover {
  background: var(--ink);
  box-shadow: 0 15px 40px rgba(61, 10, 24, 0.3);
  transform: translateY(-3px);
}

/* Glass Button */
.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero .btn-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(80, 13, 31, 0.3);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-3px);
}

/* Button Animation - Shimmer Effect */
.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-animated:hover::before {
  left: 150%;
}

/* WhatsApp Button Special Styling */
.btn[href*="wa.me"],
.text-link[href*="wa.me"],
.contact-list a[href*="wa.me"] {
  gap: 8px;
}

.btn[href*="wa.me"]::after,
.text-link[href*="wa.me"]::after,
.contact-list a[href*="wa.me"]::before {
  content: "";
  display: inline-flex;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #25d366 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.04 3.2A12.72 12.72 0 0 0 5.2 22.6L3.6 28.8l6.35-1.66A12.7 12.7 0 1 0 16.04 3.2Zm0 2.34a10.36 10.36 0 0 1 8.82 15.78 10.36 10.36 0 0 1-13.97 3.38l-.45-.27-3.77.99 1-3.67-.3-.47A10.36 10.36 0 0 1 16.04 5.54Zm-4.58 5.32c-.22 0-.58.08-.88.41-.3.33-1.16 1.13-1.16 2.76 0 1.63 1.19 3.2 1.35 3.43.17.22 2.32 3.7 5.67 5.04 2.8 1.1 3.37.88 3.98.82.6-.06 1.95-.8 2.23-1.57.27-.77.27-1.43.19-1.57-.08-.14-.3-.22-.63-.39-.33-.16-1.95-.96-2.25-1.07-.3-.11-.52-.16-.74.17-.22.33-.85 1.07-1.04 1.29-.19.22-.38.25-.71.08-.33-.16-1.39-.51-2.65-1.63-.98-.87-1.64-1.94-1.84-2.27-.19-.33-.02-.51.15-.67.15-.15.33-.38.49-.58.16-.19.22-.33.33-.55.11-.22.05-.41-.03-.58-.08-.16-.74-1.78-1.02-2.44-.27-.64-.54-.55-.74-.56h-.65Z'/%3E%3C/svg%3E") center/70% no-repeat;
}

.text-link[href*="wa.me"]::after {
  margin-left: 4px;
}

.contact-list a[href*="wa.me"]::before {
  margin-right: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 180px clamp(20px, 6vw, 88px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background: url("../images/candlfy-hero.png") center/cover no-repeat;
  will-change: transform;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 251, 0.97) 0%, rgba(255, 250, 251, 0.7) 30%, rgba(255, 250, 251, 0.2) 65%, transparent 100%),
    linear-gradient(0deg, rgba(255, 250, 251, 0.5) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.hero-content .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(255, 217, 224, 0.3);
  border-radius: 100px;
  border: 1px solid rgba(225, 27, 76, 0.15);
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.hero-content > p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating Candle Animation */
.floating-candle {
  position: absolute;
  right: clamp(30px, 8vw, 120px);
  bottom: 15%;
  z-index: 3;
  display: none;
  animation: floatCandle 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.2));
}

.floating-candle .flame {
  width: 40px;
  height: 65px;
  margin: 0 auto -5px;
  background: radial-gradient(ellipse at 45% 30%, #ffffff 0%, var(--gold) 40%, var(--gold-dark) 80%);
  border-radius: 70% 30% 60% 40%;
  box-shadow: 0 0 40px var(--gold), 0 0 80px rgba(255, 217, 224, 0.3);
  animation: flamePulse 1s ease-in-out infinite alternate;
  transform: rotate(-5deg);
}

.floating-candle .wax {
  width: 90px;
  height: 115px;
  background: linear-gradient(135deg, #fdf8ec 0%, #e8d5c0 50%, #d9c5a3 100%);
  border-radius: 18px 18px 10px 10px;
  position: relative;
}

.floating-candle .wax::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 12px;
  background: #f5f5f5;
  border-radius: 2px;
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  left: clamp(20px, 6vw, 88px);
  bottom: 50px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-stats div {
  padding: 22px 24px;
  text-align: center;
  background: rgba(255, 250, 251, 0.5);
}

.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================
   COLLECTIONS SECTION
   ============================================ */
.collections {
  background: var(--bg);
}

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

.collection-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(225, 27, 76, 0.08);
  position: relative;
  isolation: isolate;
}

.collection-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 217, 224, 0.38), transparent 45%, rgba(225, 27, 76, 0.06));
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
  z-index: 1;
}

.collection-card:hover {
  transform: translateY(-12px) rotate(-0.5deg);
  box-shadow: var(--shadow-xl);
}

.collection-card:hover::before,
.product-card:hover::before {
  opacity: 1;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.collection-card > div {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.card-kicker,
.product-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 217, 224, 0.5);
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.collection-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.collection-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.collection-card span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.text-link {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  position: relative;
  padding-right: 24px;
}

.text-link::before {
  content: "→";
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.text-link:hover::before {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why {
  background: var(--bg-soft);
}

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

.icon-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.icon-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.icon-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 217, 224, 0.3), rgba(225, 27, 76, 0.1));
  border: 1px solid rgba(225, 27, 76, 0.15);
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.icon-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.icon-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.best-sellers {
  background: var(--bg);
}

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

.product-card {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(255, 217, 224, 0.95), rgba(225, 27, 76, 0.22), rgba(255, 255, 255, 0.9)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 14px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.product-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-soft);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(61, 10, 24, 0.32), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  margin: 0;
  background: rgba(255, 250, 251, 0.86);
  backdrop-filter: blur(12px);
}

.quick-view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(61, 10, 24, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.product-card:hover .quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  transition: var(--transition-fast);
  z-index: 4;
}

.wishlist:hover,
.wishlist.active {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 4px;
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-copy p:not(.stars) {
  min-height: 48px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.product-card .stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-card strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.product-card > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

/* ============================================
   VIDEO BANNER
   ============================================ */
.video-banner {
  position: relative;
  min-height: 75vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.video-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
}

.video-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 800px;
}

.video-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--bg);
}

.testimonial-shell {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 70px);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.testimonial-shell::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  font-family: var(--serif);
  color: rgba(255, 217, 224, 0.3);
  line-height: 1;
  pointer-events: none;
}

/* ============================================
   ENHANCED COLLECTION PAGE
   ============================================ */
.collection-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(180px, 42%) 1fr;
  gap: 0;
  min-height: 330px;
  background: var(--white);
  border: 1px solid rgba(225, 27, 76, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.collection-feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.collection-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-feature:hover img {
  transform: scale(1.07);
}

.collection-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.collection-feature h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.collection-feature p {
  color: var(--muted);
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-tags span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 217, 224, 0.44);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.large-tags {
  margin-top: 26px;
}

.large-tags span {
  padding: 10px 14px;
}

.faq-preview {
  background: var(--bg-soft);
}

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

.faq-card {
  background: var(--white);
  border: 1px solid rgba(225, 27, 76, 0.08);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.faq-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================
   BULK ORDER PAGE
   ============================================ */
.bulk-hero .page-hero-content {
  max-width: 820px;
}

.bulk-form-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.bulk-form-section {
  background: var(--bg-soft);
}

.bulk-order-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bulk-order-form input,
.bulk-order-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(80, 13, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 15px 18px;
  color: var(--ink);
  outline: none;
  transition: var(--transition-fast);
}

.bulk-order-form textarea,
.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.bulk-order-form input:focus,
.bulk-order-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(225, 27, 76, 0.08);
}

.file-drop {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 112px;
  padding: 22px;
  border: 1px dashed rgba(225, 27, 76, 0.38);
  border-radius: 18px;
  background: rgba(255, 217, 224, 0.18);
  color: var(--muted);
  text-align: center;
}

.file-drop span {
  font-weight: 800;
  color: var(--ink);
}

.form-note.success {
  color: #1f7a4d;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeUp 0.7s ease both;
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.testimonial h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial blockquote {
  font-family: var(--accent-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(80, 13, 31, 0.2);
  border: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--gold-dark);
  transform: scale(1.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 217, 224, 0.2), transparent);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-copy .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram {
  background: var(--bg);
}

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

.insta-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 40%, #d6249f 60%, #285aeb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 2;
  font-size: 0;
}

.insta-item span::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M10.2 4h11.6A6.2 6.2 0 0 1 28 10.2v11.6a6.2 6.2 0 0 1-6.2 6.2H10.2A6.2 6.2 0 0 1 4 21.8V10.2A6.2 6.2 0 0 1 10.2 4Zm0 2.3a3.9 3.9 0 0 0-3.9 3.9v11.6a3.9 3.9 0 0 0 3.9 3.9h11.6a3.9 3.9 0 0 0 3.9-3.9V10.2a3.9 3.9 0 0 0-3.9-3.9H10.2ZM16 9.8a6.2 6.2 0 1 1 0 12.4 6.2 6.2 0 0 1 0-12.4Zm0 2.3a3.9 3.9 0 1 0 0 7.8 3.9 3.9 0 0 0 0-7.8Zm6.5-3.1a1.45 1.45 0 1 1 0 2.9 1.45 1.45 0 0 1 0-2.9Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.insta-item:hover::after,
.insta-item:hover span {
  opacity: 1;
}

.insta-item:hover span {
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 20px;
  background:
    linear-gradient(rgba(61, 10, 24, 0.5), rgba(61, 10, 24, 0.5)),
    url("../images/candlfy-hero.png") center/cover fixed;
}

.newsletter-card {
  background: rgba(255, 250, 251, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 70px);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.newsletter-card .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.newsletter-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.newsletter-card > p {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(201, 166, 107, 0.3);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(225, 27, 76, 0.1);
}

.form-note {
  min-height: 24px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px clamp(20px, 5vw, 80px) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
}

.footer .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0;
  transition: var(--transition-fast);
  padding: 0;
  margin: 0;
}

.socials a:hover {
  transform: translateY(-3px);
}

.socials .instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 40%, #d6249f 60%, #285aeb 100%);
  border: none;
}

.socials .instagram::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M10.2 4h11.6A6.2 6.2 0 0 1 28 10.2v11.6a6.2 6.2 0 0 1-6.2 6.2H10.2A6.2 6.2 0 0 1 4 21.8V10.2A6.2 6.2 0 0 1 10.2 4Zm0 2.3a3.9 3.9 0 0 0-3.9 3.9v11.6a3.9 3.9 0 0 0 3.9 3.9h11.6a3.9 3.9 0 0 0 3.9-3.9V10.2a3.9 3.9 0 0 0-3.9-3.9H10.2ZM16 9.8a6.2 6.2 0 1 1 0 12.4 6.2 6.2 0 0 1 0-12.4Zm0 2.3a3.9 3.9 0 1 0 0 7.8 3.9 3.9 0 0 0 0-7.8Zm6.5-3.1a1.45 1.45 0 1 1 0 2.9 1.45 1.45 0 0 1 0-2.9Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.socials .facebook {
  background: #1877f2;
  border: none;
}

.socials .facebook::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M18.2 28V17.1h3.66l.55-4.25H18.2v-2.72c0-1.23.34-2.07 2.1-2.07h2.25V4.25A30.2 30.2 0 0 0 19.27 4c-3.24 0-5.45 1.98-5.45 5.6v3.25h-3.66v4.25h3.66V28h4.38Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.socials .pinterest {
  background: #e60023;
  border: none;
}

.socials .pinterest::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.15 3.8C9.35 3.8 6 8.62 6 12.64c0 2.46.93 4.65 2.93 5.47.33.14.62 0 .72-.36.07-.25.22-.88.29-1.14.1-.36.06-.48-.2-.8-.58-.68-.95-1.56-.95-2.8 0-3.62 2.7-6.86 7.04-6.86 3.84 0 5.95 2.35 5.95 5.49 0 4.12-1.82 7.6-4.53 7.6-1.49 0-2.61-1.24-2.25-2.76.43-1.82 1.27-3.79 1.27-5.1 0-1.18-.64-2.16-1.94-2.16-1.54 0-2.78 1.59-2.78 3.72 0 1.36.46 2.28.46 2.28l-1.85 7.83c-.55 2.32-.08 5.16-.04 5.45.02.17.24.21.34.08.14-.18 1.97-2.44 2.59-4.7.18-.64 1.02-3.98 1.02-3.98.5.96 1.97 1.8 3.53 1.8 4.65 0 7.8-4.24 7.8-9.91 0-4.29-3.64-8.29-9.25-8.29Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-bottom {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px clamp(20px, 5vw, 80px);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
  display: inline;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: grid;
  align-items: flex-end;
  padding: 200px clamp(20px, 6vw, 88px) 80px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -5%;
  background: var(--page-image) center/cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 10, 24, 0.8) 0%, rgba(61, 10, 24, 0.3) 60%, transparent 100%),
    linear-gradient(0deg, rgba(61, 10, 24, 0.6) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: var(--white);
}

.page-hero-content .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(255, 217, 224, 0.2);
  border-radius: 100px;
  border: 1px solid rgba(255, 217, 224, 0.3);
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 600px;
}

/* Page Kicker */
.page-kicker {
  background: var(--charcoal);
  padding: 40px clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.page-kicker strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.page-kicker span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
}

.whatsapp-float span {
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.04 3.2A12.72 12.72 0 0 0 5.2 22.6L3.6 28.8l6.35-1.66A12.7 12.7 0 1 0 16.04 3.2Zm0 2.34a10.36 10.36 0 0 1 8.82 15.78 10.36 10.36 0 0 1-13.97 3.38l-.45-.27-3.77.99 1-3.67-.3-.47A10.36 10.36 0 0 1 16.04 5.54Zm-4.58 5.32c-.22 0-.58.08-.88.41-.3.33-1.16 1.13-1.16 2.76 0 1.63 1.19 3.2 1.35 3.43.17.22 2.32 3.7 5.67 5.04 2.8 1.1 3.37.88 3.98.82.6-.06 1.95-.8 2.23-1.57.27-.77.27-1.43.19-1.57-.08-.14-.3-.22-.63-.39-.33-.16-1.95-.96-2.25-1.07-.3-.11-.52-.16-.74.17-.22.33-.85 1.07-1.04 1.29-.19.22-.38.25-.71.08-.33-.16-1.39-.51-2.65-1.63-.98-.87-1.64-1.94-1.84-2.27-.19-.33-.02-.51.15-.67.15-.15.33-.38.49-.58.16-.19.22-.33.33-.55.11-.22.05-.41-.03-.58-.08-.16-.74-1.78-1.02-2.44-.27-.64-.54-.55-.74-.56h-.65Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1200;
  opacity: 0;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

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

@keyframes flamePulse {
  from { transform: rotate(-8deg) scale(0.95); }
  to { transform: rotate(5deg) scale(1.08); }
}

@keyframes floatCandle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 50px;
    max-width: 100%;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    min-height: 70px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu,
  .nav-actions {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 251, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    display: none;
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
    box-shadow: var(--shadow-md);
  }
  
  .navbar.open .nav-menu,
  .navbar.open .nav-actions {
    display: flex;
  }
  
  .about,
  .editorial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-feature-grid,
  .bulk-form-layout {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-kicker {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Phones */
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 150px 20px 60px;
    display: block;
  }
  
  .floating-candle {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: clamp(60px, 8vw, 100px) 20px;
  }
  
  .collection-grid,
  .why-grid,
  .product-grid,
  .journal-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .collection-feature {
    grid-template-columns: 1fr;
  }

  .collection-feature img {
    aspect-ratio: 16/11;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .socials {
    justify-content: center;
  }
  
  .page-kicker {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-shell::before {
    font-size: 80px;
    top: 10px;
    left: 20px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 80px;
  }
  
  .announcement {
    font-size: 0.65rem;
    padding: 8px 0;
  }
  
  .navbar {
    padding: 0 16px;
    min-height: 64px;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .logo-img {
    width: 44px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .btn {
    min-height: 46px;
    font-size: 0.8rem;
    padding: 0 20px;
  }
  
  .section-head h2 {
    font-size: 1.8rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero-stats div {
    padding: 16px;
    border-bottom: 1px solid rgba(103, 49, 71, 0.1);
  }
  
  .hero-stats div:last-child {
    border-bottom: none;
  }
  
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}

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

/* Print Styles */
@media print {
  .site-header,
  .whatsapp-float,
  .announcement,
  .newsletter,
  .instagram {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}
