*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F5F0EB;
  --cream-light: #FAF7F4;
  --cream-dark: #EDE5DB;
  --gold: #8C6B30;
  --gold-light: #C4A87C;
  --gold-dark: #6F5525;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --sage: #A8B5A0;
  --sage-light: #C8D4C0;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: top 0.3s ease;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  top: 0;
}
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 168, 124, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(250, 247, 244, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.nav-logo-img:hover {
  transform: scale(1.05);
}
.navbar.scrolled .nav-logo-img {
  height: 40px;
}
.footer-logo-img {
  height: 45px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--charcoal-light);
  text-decoration: none; position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cart {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; color: var(--charcoal);
  cursor: pointer; text-decoration: none;
}
.cart-count {
  background: var(--gold); color: white; font-size: 0.7rem;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ============ HERO CAROUSEL ============ */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-slides {
  position: relative; height: 100%; width: 100%; z-index: 2;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide-content {
  text-align: center; z-index: 2; padding: 2rem;
  transform: translateY(30px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 1s ease 0.3s;
  opacity: 0;
}
.hero-slide.active .hero-slide-content {
  transform: translateY(0); opacity: 1;
}
.hero-badge {
  display: inline-block; padding: 0.5rem 1.5rem;
  background: rgba(196, 168, 124, 0.25);
  border: 1px solid rgba(196, 168, 124, 0.5);
  border-radius: 50px; font-size: 0.75rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.1;
  color: #fff; margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.15rem; font-weight: 300;
  color: rgba(255,255,255,0.9); max-width: 500px;
  margin: 0 auto 2rem; line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.15); color: white;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta:hover {
  background: rgba(255,255,255,0.3); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-bg-gradient {
  display: none;
}
.hero-bg-gradient.slide-1 {
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 168, 124, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(168, 181, 160, 0.1) 0%, transparent 50%),
              var(--cream);
}
.hero-bg-gradient.slide-2 {
  background: radial-gradient(ellipse at 60% 40%, rgba(168, 181, 160, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(196, 168, 124, 0.1) 0%, transparent 50%),
              var(--cream);
}
.hero-bg-gradient.slide-3 {
  background: radial-gradient(ellipse at 50% 60%, rgba(196, 168, 124, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(200, 212, 192, 0.15) 0%, transparent 50%),
              var(--cream);
}

/* Floating product images in hero — hidden with video bg */
.hero-floating {
  display: none;
}
.hero-float-1 {
  width: 180px; height: 280px; background: linear-gradient(135deg, var(--cream-dark), var(--gold) 80%);
  border-radius: 100px; top: 15%; left: 8%;
  opacity: 0.4; filter: blur(1px);
  animation: floatSlow 8s ease-in-out infinite;
}
.hero-float-2 {
  width: 120px; height: 200px; background: linear-gradient(135deg, var(--sage-light), var(--sage) 80%);
  border-radius: 80px; bottom: 20%; right: 10%;
  opacity: 0.3; filter: blur(1px);
  animation: floatSlow 10s ease-in-out infinite reverse;
}
.hero-float-3 {
  width: 80px; height: 80px; background: var(--gold);
  border-radius: 50%; top: 30%; right: 20%;
  opacity: 0.15;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* Hero navigation dots */
.hero-dots {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 0.75rem;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer; transition: all 0.4s;
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Hero arrows */
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  color: #fff;
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.3); color: white;
  box-shadow: 0 5px 20px rgba(255,255,255,0.15);
}
.hero-arrow.prev { left: 2rem; }
.hero-arrow.next { right: 2rem; }

/* ============ CATEGORIES PILLS ============ */
.categories-section {
  padding: 4rem 3rem 2rem;
  background: var(--cream-light);
}
.categories-scroll {
  display: flex; gap: 0.75rem;
  overflow-x: auto; padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer; transition: all 0.3s;
  background: transparent;
  white-space: nowrap;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--gold); color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 168, 124, 0.25);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered delay for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }

/* ============ SECTION TITLES ============ */
.section-header {
  text-align: center; padding: 5rem 3rem 3rem;
}
.section-label {
  font-size: 0.75rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; font-weight: 300;
  color: var(--charcoal-light); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* ============ BEST-SELLERS GRID ============ */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 3rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============ CATALOGUE SECTION ============ */
.catalogue-section {
  padding: 5rem 0 2rem;
  background: var(--cream);
}
.catalogue-filters {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; padding: 0 2rem 2rem;
}
.catalogue-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 1.5px solid var(--cream-dark);
  background: white;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  color: var(--charcoal);
  font-family: var(--font-body);
}
.catalogue-filter-btn:hover {
  border-color: var(--gold); color: var(--gold);
}
.catalogue-filter-btn.active {
  background: var(--charcoal); color: white;
  border-color: var(--charcoal);
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 3rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* ============ PRODUCT CAROUSEL (legacy) ============ */
.products-carousel-wrapper {
  padding: 0 3rem 5rem;
  position: relative;
  display: none;
}
.products-carousel {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-carousel::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 280px; scroll-snap-align: start;
  background: white; border-radius: 20px;
  overflow: hidden; cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.product-img {
  height: 300px; overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img-placeholder {
  width: 100px; height: 200px;
  border-radius: 10px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img-placeholder {
  transform: scale(1.05) rotate(-2deg);
}
.product-tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--gold); color: white;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 20px;
}
.product-info { padding: 1.5rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 0.85rem; color: var(--charcoal-light);
  font-weight: 300; margin-bottom: 1rem;
}
.product-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 1.2rem; font-weight: 600; color: var(--charcoal);
}
.product-price span {
  font-size: 0.85rem; font-weight: 300;
  color: var(--charcoal-light);
}
.add-to-cart-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  font-size: 1.2rem;
}
.add-to-cart-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

/* Carousel navigation */
.carousel-nav {
  display: flex; gap: 0.75rem; justify-content: center;
  margin-top: 1rem;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 1.5px solid var(--cream-dark);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--charcoal);
}
.carousel-btn:hover {
  background: var(--gold); color: white; border-color: var(--gold);
}

/* ============ BRAND STORY SECTION ============ */
.brand-story {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh; overflow: hidden;
}
.brand-story-visual {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.brand-story-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.brand-visual-circle {
  width: 350px; height: 350px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--sage) 100%);
  opacity: 0.2; position: absolute;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.3; }
}
.brand-visual-bottle {
  width: 120px; height: 300px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--gold) 100%);
  border-radius: 20px 20px 10px 10px;
  position: relative; z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.brand-visual-bottle::before {
  content: ''; position: absolute;
  top: -30px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 40px;
  background: var(--charcoal); border-radius: 5px 5px 0 0;
}
.brand-visual-bottle::after {
  content: 'PRO PURE'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 3px;
  color: white; text-align: center;
}
.brand-story-content {
  display: flex; flex-direction: column;
  justify-content: center; padding: 5rem;
  background: var(--cream-light);
}
.brand-story-content .section-label { text-align: left; }
.brand-story-content .section-title {
  text-align: left; margin-bottom: 1.5rem;
}
.brand-story-text {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--charcoal-light); font-weight: 300;
  margin-bottom: 2rem;
}
.brand-values {
  display: flex; gap: 2rem; margin-top: 1rem;
}
.value-item { text-align: center; }
.value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(196, 168, 124, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; font-size: 1.5rem;
}
.value-icon img {
  width: 28px; height: 28px; object-fit: contain;
}
.value-label {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--charcoal);
}

/* ============ GAMMES SECTION ============ */
.gammes-section {
  padding: 5rem 3rem;
  background: var(--cream);
}
.gammes-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.gamme-card {
  background: white; border-radius: 24px;
  padding: 2.5rem; text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer; position: relative; overflow: hidden;
}
.gamme-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196, 168, 124, 0.05), rgba(168, 181, 160, 0.05));
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.gamme-card:hover::before { opacity: 1; }
.gamme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.gamme-img {
  width: 140px; height: 140px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.gamme-card:hover .gamme-img {
  transform: scale(1.08);
}
.gamme-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 0.5rem; color: var(--charcoal);
}
.gamme-count {
  font-size: 0.85rem; color: var(--charcoal-light);
  font-weight: 300;
}
.gamme-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.85rem;
  font-weight: 500; color: var(--gold-dark);
  text-decoration: none; letter-spacing: 1px;
  text-transform: uppercase;
  position: relative; z-index: 2;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  padding: 5rem 3rem; background: var(--charcoal);
  color: white; text-align: center;
}
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: white; }
.testimonials-track {
  display: flex; gap: 2rem;
  overflow-x: auto; padding: 2rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 350px; scroll-snap-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2.5rem;
  text-align: left;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1rem; line-height: 1.7;
  font-weight: 300; color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author {
  font-weight: 500; font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 6rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, rgba(196, 168, 124, 0.15) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196, 168, 124, 0.2) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
}
.cta-banner .section-title { margin-bottom: 1rem; }
.cta-banner .hero-cta { margin-top: 1.5rem; }

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; display: block; }
.footer-brand p {
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: white; margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.85rem; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ============ RESPONSIVE ============ */
/* ====== BURGER MENU ====== */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== MOBILE OVERLAY NAV ====== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  transition: color 0.3s;
}
.mobile-nav-overlay a:hover {
  color: var(--gold);
}

/* ====== TABLET (max 1024px) ====== */
@media (max-width: 1024px) {
  .navbar { padding: 1rem 2rem; }
  .navbar.scrolled { padding: 0.7rem 2rem; }
  .nav-links { gap: 1.8rem; }
  .hero { min-height: 80vh; padding: 8rem 2rem 4rem; }
  .hero-title { font-size: 3rem; }
  .brand-story { grid-template-columns: 1fr; }
  .brand-story-img { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bestsellers-grid { grid-template-columns: repeat(3, 1fr); padding: 1rem 2rem 2rem; gap: 1.5rem; }
  .catalogue-grid { padding: 1rem 2rem 3rem; }
  .gammes-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .gamme-card { padding: 2rem 1.5rem; }
  .gamme-img { width: 120px; height: 120px; }
  .testimonial-card { flex: 0 0 300px; }
}

/* ====== MOBILE (max 768px) ====== */
@media (max-width: 768px) {
  .navbar { padding: 0.8rem 1.2rem; }
  .nav-links { display: none; }
  .burger-menu { display: flex; }
  .nav-logo-img { height: 38px; }
  .navbar.scrolled .nav-logo-img { height: 32px; }
  .nav-cart { margin-left: auto; margin-right: 0.8rem; }

  .hero { height: calc(var(--vh, 1vh) * 100); min-height: 100dvh; padding: 0; text-align: center; overflow: hidden; }
  .hero-video { object-position: center center; }
  .hero-slide { padding: 5rem 1.2rem 3rem; }
  .hero-slide-content { padding: 1rem; }
  .hero-title { font-size: 1.8rem; line-height: 1.25; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 85%; margin-left: auto; margin-right: auto; line-height: 1.6; }
  .hero-badge { font-size: 0.65rem; padding: 0.4rem 1.2rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .hero-float-1, .hero-float-2, .hero-float-3 { display: none; }
  .hero-arrow { display: none; }
  .hero-cta { font-size: 0.8rem; padding: 0.85rem 2rem; letter-spacing: 1.5px; }
  .hero-dots { bottom: 1.5rem; }
  .hero-dot { width: 10px; height: 10px; }

  .section-header { padding: 2rem 1rem 0; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; padding: 0 0.5rem; }
  .section-label { font-size: 0.7rem; }

  .categories-section { padding: 2rem 1rem 1.5rem; }
  .categories-section .cat-btn { font-size: 0.75rem; padding: 0.5rem 1rem; }

  /* 2-column grid on mobile for products */
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem 1rem 2rem; gap: 1rem; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem 1rem 3rem; gap: 1rem; }
  .catalogue-section { padding: 3rem 0 2rem; }
  .catalogue-filters { gap: 0.4rem; padding: 0 0.8rem 1.5rem; }
  .catalogue-filter-btn { font-size: 0.65rem; padding: 0.45rem 0.8rem; letter-spacing: 0.3px; }
  .products-carousel-wrapper { padding: 0 1rem 2.5rem; }
  .products-carousel { gap: 1rem; }
  .product-card { min-width: unset; border-radius: 16px; }
  .product-card:hover { transform: none; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
  .product-img { height: 180px; }
  .product-img-placeholder { width: 60px; height: 130px; }
  .product-info { padding: 1rem; }
  .product-name { font-size: 0.85rem; }
  .product-desc { font-size: 0.75rem; -webkit-line-clamp: 2; }
  .product-price { font-size: 1rem; }
  .product-add-btn { padding: 0.6rem 1rem; font-size: 0.7rem; }

  .brand-story { grid-template-columns: 1fr; }
  .brand-story-img { min-height: 220px; order: -1; }
  .brand-story-content { padding: 2rem 1.5rem; }
  .brand-story-text { font-size: 0.95rem; }
  .brand-values { flex-direction: column; gap: 1rem; }

  /* 2-column gammes grid on mobile */
  .gammes-section { padding: 3rem 1rem; }
  .gammes-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gamme-card { padding: 1.5rem 1rem; border-radius: 18px; }
  .gamme-card:hover { transform: none; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
  .gamme-img { width: 110px; height: 110px; margin-bottom: 1rem; }
  .gamme-title { font-size: 1.1rem; }
  .gamme-count { font-size: 0.75rem; }
  .gamme-link { font-size: 0.75rem; margin-top: 1rem; }

  .testimonials-section { padding: 3rem 1rem; }
  .testimonials-track { flex-direction: column; gap: 1.2rem; padding: 0; }
  .testimonial-card { flex: none; min-width: unset; width: 100%; padding: 1.5rem; }

  .cta-banner { padding: 2.5rem 1.2rem; margin: 2rem 0.8rem; border-radius: 18px; }
  .cta-banner .section-title { font-size: 1.4rem; }

  .footer { padding: 2.5rem 1.2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; grid-column: 1 / -1; }
  .footer-social { justify-content: center; }
  .footer-logo-img { height: 35px; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .cart-drawer { width: 100%; max-width: 100%; }
  .sub-toggle { flex-direction: row; }
  .sub-toggle-btn { font-size: 0.7rem; padding: 0.4rem 0.8rem; }

  /* Disable heavy animations on mobile */
  .particles-container { display: none !important; }
  .scroll-progress { height: 2px; }

  /* Simplify hero animations on mobile for reliability */
  .hero-word { animation-duration: 0.4s !important; }
  .hero-slide-content {
    transform: translateY(15px) !important;
    transition: transform 0.6s ease 0.1s, opacity 0.6s ease 0.1s !important;
  }
  .hero-slide.active .hero-slide-content {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* ====== SMALL MOBILE (max 480px) ====== */
@media (max-width: 480px) {
  .hero { height: calc(var(--vh, 1vh) * 100); min-height: 100dvh; }
  .hero-slide { padding: 4rem 0.8rem 2rem; }
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.8rem; max-width: 90%; }
  .hero-cta { font-size: 0.75rem; padding: 0.75rem 1.8rem; }
  .product-card { min-width: unset; }
  .product-img { height: 150px; }
  .product-img-placeholder { width: 50px; height: 110px; }
  .product-info { padding: 0.8rem; }
  .product-name { font-size: 0.78rem; }
  .product-price { font-size: 0.9rem; }
  .product-add-btn { padding: 0.5rem 0.8rem; font-size: 0.65rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.8rem; }
  .cta-banner .section-title { font-size: 1.2rem; }
  .gamme-card { padding: 1.2rem 0.8rem; }
  .gamme-img { width: 90px; height: 90px; }
  .gamme-title { font-size: 0.95rem; }
  .gamme-link { font-size: 0.7rem; }
  .nav-logo-img { height: 32px; }
  .catalogue-filter-btn { font-size: 0.6rem; padding: 0.4rem 0.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-bar-wrapper { padding: 0 1rem; }
  .search-bar-icon { left: calc(1rem + 12px); }
  .newsletter-section { padding: 3rem 1.2rem; }
  .newsletter-submit { padding: 0.75rem 1.2rem; }
  .trust-badges { gap: 0.75rem; }
  .trust-badge { padding: 0.5rem 0.75rem; }
  .trust-badge span { font-size: 0.72rem; }
  .delivery-estimate { padding: 0.8rem 1rem; }
  .delivery-estimate span { font-size: 0.82rem; }
  .qty-selector button { width: 44px; height: 44px; }
  .qty-selector span { width: 44px; line-height: 44px; }
}

/* ============================================
   ANIMATIONS & VISUAL EFFECTS
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  z-index: 10001;
  transition: width 0.1s linear;
  width: 0%;
}

/* --- Floating Particles --- */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* --- Hero Word Animation --- */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroWordReveal 0.6s ease forwards;
}
@keyframes heroWordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Scroll Reveal Animations --- */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.85); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* --- Stagger Animation --- */
.stagger-anim > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-anim.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-anim.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-anim.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-anim.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-anim.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-anim.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-anim.visible > *:nth-child(6) { transition-delay: 0.3s; }

/* --- Ripple Button Effect --- */
.ripple-btn {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* --- Cart Badge Bounce --- */
.cart-badge.bounce {
  animation: badgeBounce 0.4s ease;
}
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}

/* --- Glassmorphism Navbar on Scroll --- */
.navbar.scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(26, 26, 26, 0.85) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* --- Product Card 3D Tilt --- */
.product-card {
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- Shimmer on Hero CTA --- */
.hero-cta-anim {
  position: relative;
  overflow: hidden;
}
.hero-cta-anim::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transform: rotate(30deg) translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: rotate(30deg) translateX(-100%); }
  50% { transform: rotate(30deg) translateX(100%); }
}

/* Section fade-in removed — sections stay visible, reveal classes handle animations */


/* ============ CART DRAWER STYLES ============ */
/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw;
  height: 100vh; z-index: 999;
  background: var(--cream-light);
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal);
}
.cart-close {
  background: none; border: none; font-size: 1.8rem; color: var(--charcoal-light);
  cursor: pointer; line-height: 1;
}

.cart-items {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center; color: var(--charcoal-light); padding: 3rem 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: center;
}
.cart-item-img {
  width: 70px; height: 70px; border-radius: 10px;
  background-size: cover; background-position: center;
  background-color: var(--cream-dark); flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--charcoal); margin-bottom: 0.3rem;
}
.cart-item-price { font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }

.cart-item-qty {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem;
}
.cart-item-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--cream-dark); background: var(--white);
  color: var(--charcoal); cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-qty span { font-size: 0.9rem; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none; border: none; color: #c0a0a0; cursor: pointer;
  font-size: 1.2rem; padding: 0.3rem;
}

.cart-footer {
  padding: 1.2rem 1.5rem; border-top: 1px solid var(--cream-dark);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--charcoal);
}
.cart-checkout-btn {
  width: 100%; padding: 1rem 2rem;
  background: var(--charcoal); color: var(--white);
  border: none; border-radius: 50px; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s ease;
}
.cart-checkout-btn:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196,168,124,0.3);
}

/* Cart badge on navbar */
.nav-cart {
  position: relative; cursor: pointer; background: none; border: none;
  color: var(--charcoal); display: flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-body); font-size: 0.9rem;
}
.cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 600;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cart-badge.show { opacity: 1; transform: scale(1); }

/* Toast notification */
.cart-toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--charcoal); color: var(--white);
  padding: 0.8rem 1.5rem; border-radius: 50px;
  font-size: 0.9rem; z-index: 1000;
  opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============ SUBSCRIPTION TOGGLE ============ */
.sub-toggle {
  display: flex; gap: 0; margin-top: 0.6rem;
  background: var(--cream-dark); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(196,168,124,0.2);
}
.sub-toggle-btn {
  flex: 1; padding: 0.45rem 0.3rem;
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  color: var(--charcoal-light); transition: all 0.3s ease;
  text-align: center; line-height: 1.2;
}
.sub-toggle-btn.active {
  background: var(--white); color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-radius: 6px;
}
.sub-toggle-btn.sub-option.active {
  background: var(--gold); color: var(--white);
}
.sub-freq {
  display: none; margin-top: 0.5rem;
}
.sub-freq.visible { display: flex; gap: 0.4rem; }
.sub-freq-btn {
  flex: 1; padding: 0.35rem 0.2rem;
  border: 1px solid var(--cream-dark); border-radius: 6px;
  background: var(--white); cursor: pointer;
  font-family: var(--font-body); font-size: 0.7rem; color: var(--charcoal-light);
  transition: all 0.2s ease; text-align: center;
}
.sub-freq-btn.active {
  border-color: var(--gold); color: var(--gold-dark);
  background: rgba(196,168,124,0.08); font-weight: 600;
}
.sub-discount {
  display: none; margin-top: 0.3rem;
  font-size: 0.75rem; color: var(--gold-dark); font-weight: 600;
}
.sub-discount.visible { display: block; }
.sub-price-strike {
  text-decoration: line-through; color: var(--charcoal-light);
  font-weight: 400; font-size: 0.85rem; margin-right: 0.4rem;
}

/* ============ PRODUCT DETAIL PAGE ============ */
.breadcrumb {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #999;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { margin: 0 0.5rem; color: #ccc; }

.product-detail {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}
.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #f8f5f0;
  margin-bottom: 1rem;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-gallery-main:hover img {
  transform: scale(1.05);
}
.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}
.product-gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  background: #f8f5f0;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--gold);
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding-top: 1rem;
}
.product-info .product-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.product-info .product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.product-info .product-price-detail {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-info .product-description-full {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2.5rem;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}
.product-add-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 44, 44, 0.4);
}
.product-add-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.3);
}

.product-meta {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.product-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.75rem;
}
.product-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Related Products */
.related-products {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}
.related-products .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Product card link wrapper */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card-link:hover .product-name {
  color: var(--gold);
}

/* Loading state */
.product-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1.5rem;
}
.product-loading .spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #eee;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.product-loading p {
  font-family: 'Inter', sans-serif;
  color: #999;
  font-size: 0.95rem;
}

/* Product not found */
.product-not-found {
  text-align: center;
  padding: 8rem 2rem;
}
.product-not-found h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.product-not-found p {
  font-family: 'Inter', sans-serif;
  color: #999;
  margin-bottom: 2rem;
}
.product-not-found a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* Responsive product detail */
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .product-gallery { position: static; }
  .product-gallery-main { border-radius: 16px; }
  .product-gallery-thumb { width: 60px; height: 60px; }
  .product-info .product-title { font-size: 1.6rem; }
  .product-info .product-price-detail { font-size: 1.3rem; }
  .product-info .product-description-full { font-size: 0.9rem; line-height: 1.7; }
  .product-add-btn { font-size: 0.95rem; padding: 1rem 2rem; }
  .trust-badges { gap: 0.75rem; }
  .trust-badge { flex: 1 1 calc(50% - 0.5rem); }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .breadcrumb { padding: 0.8rem 1rem; margin-top: 75px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .product-detail { gap: 1rem; padding: 0 0.8rem; }
  .product-info .product-title { font-size: 1.4rem; }
  .product-info .product-price-detail { font-size: 1.2rem; }
  .product-info .product-category { font-size: 0.7rem; }
  .breadcrumb { margin-top: 70px; font-size: 0.72rem; }
  .product-gallery-thumb { width: 50px; height: 50px; border-radius: 8px; }
}

/* ===== Legal / FAQ Pages ===== */
.legal-page {
  padding: 6rem 2rem 4rem;
  background: var(--cream);
  min-height: 60vh;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-container h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.legal-container h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-container h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-container p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}
.legal-container a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-container a:hover {
  color: var(--gold-dark);
}
.legal-container em {
  color: var(--charcoal-light);
  font-size: 0.9rem;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.faq-item h3 {
  margin-top: 0;
  color: var(--charcoal);
}
.faq-item p {
  margin-bottom: 0.5rem;
}
.faq-item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-page { padding: 5rem 1.2rem 3rem; }
  .legal-container h1 { font-size: 1.8rem; }
  .legal-container h2 { font-size: 1.3rem; }
  .legal-container p { font-size: 0.9rem; }
  .faq-item { padding: 1.2rem 1.4rem; }
}
@media (max-width: 480px) {
  .legal-page { padding: 4.5rem 1rem 2rem; }
  .legal-container h1 { font-size: 1.5rem; }
  .legal-container h2 { font-size: 1.15rem; margin-top: 2rem; }
  .legal-container p { font-size: 0.85rem; }
  .faq-item { padding: 1rem 1.2rem; }
  .faq-item h3 { font-size: 1rem; }
}

/* ============ BODY CART OPEN ============ */
body.cart-open { overflow: hidden; }

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--charcoal); color: var(--cream-light);
  padding: 1.2rem 2rem; z-index: 1100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 0.9rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { flex: 1; min-width: 250px; line-height: 1.5; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.4rem; border: none; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease;
}
.cookie-btn-accept {
  background: var(--gold); color: var(--white);
}
.cookie-btn-accept:hover { background: var(--gold-dark); }
.cookie-btn-refuse {
  background: transparent; color: var(--cream-light);
  border: 1px solid var(--cream-dark);
}
.cookie-btn-refuse:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 1rem 1.2rem; gap: 1rem; }
  .cookie-banner p { min-width: unset; font-size: 0.82rem; }
  .cookie-btns { width: 100%; justify-content: center; }
  .cookie-btn { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
}

/* ============ LOADING SKELETON ============ */
.skeleton-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem; padding: 0 2rem; max-width: 1200px; margin: 0 auto;
}
.skeleton-card {
  background: var(--cream-light); border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.skeleton-img {
  width: 100%; height: 280px; background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream-light) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 1.2rem; }
.skeleton-line {
  height: 14px; border-radius: 7px; margin-bottom: 0.8rem;
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream-light) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-line.price { width: 40%; height: 18px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============ 404 PAGE ============ */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 2rem;
  background: var(--cream);
}
.page-404 h1 {
  font-family: var(--font-display); font-size: 8rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.page-404 h2 {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--charcoal);
  margin-bottom: 1rem;
}
.page-404 p {
  font-family: var(--font-body); font-size: 1.05rem; color: var(--charcoal-light);
  margin-bottom: 2rem; max-width: 500px;
}
.page-404 a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--gold); color: var(--white);
  text-decoration: none; border-radius: 8px; font-family: var(--font-body);
  font-weight: 500; transition: all 0.3s ease;
}
.page-404 a:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ============ OUT OF STOCK ============ */
.product-card.out-of-stock .product-img {
  opacity: 0.5;
  filter: grayscale(40%);
}
.product-card.out-of-stock .sub-toggle,
.product-card.out-of-stock .sub-freq,
.product-card.out-of-stock .sub-discount {
  display: none !important;
}
.out-of-stock-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c0392b;
  padding: 0.4rem 1rem;
  border: 1.5px solid #c0392b;
  border-radius: 30px;
}
.out-of-stock-banner {
  text-align: center;
  padding: 1rem 2rem;
  background: #fdf2f2;
  color: #c0392b;
  border: 1.5px solid #e8c4c4;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============ SEARCH BAR ============ */
.search-bar-wrapper {
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  position: relative;
}
.search-bar {
  width: 100%;
  padding: 0.8rem 1.2rem 0.8rem 3rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 30px;
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.search-bar::placeholder {
  color: #aaa;
}
.search-bar:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(140, 107, 48, 0.1);
}
.search-bar-icon {
  position: absolute;
  left: calc(2rem + 12px);
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}
.search-bar:focus ~ .search-bar-icon {
  color: var(--gold);
}
.search-no-results {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--charcoal-light);
  font-family: var(--font-body);
  font-size: 1rem;
  display: none;
}

/* ============ QUANTITY SELECTOR ============ */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  width: fit-content;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--cream-light);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--charcoal);
  transition: background 0.2s;
  font-family: var(--font-body);
}
.qty-selector button:hover {
  background: var(--cream-dark);
}
.qty-selector span {
  width: 48px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 40px;
  background: white;
}

/* ============ SUBSCRIPTION CTA SECTION ============ */
.sub-cta-section {
  padding: 5rem 2rem;
  background: var(--cream-light);
}
.sub-cta-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.sub-cta-card {
  text-align: center;
  padding: 2rem 1rem;
}
.sub-cta-icon {
  margin-bottom: 1.5rem;
}
.sub-cta-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.sub-cta-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.sub-cta-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sub-cta-section { padding: 3rem 1rem; }
  .sub-cta-benefits { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .sub-cta-icon img { width: 80px; height: 80px; }
}
@media (max-width: 480px) {
  .sub-cta-benefits { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sub-cta-card { padding: 1.2rem 0.5rem; }
  .sub-cta-icon img { width: 70px; height: 70px; }
  .sub-cta-card h3 { font-size: 0.85rem; }
  .sub-cta-card p { font-size: 0.8rem; }
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: center;
}
.newsletter-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-section p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-input:focus {
  border-color: var(--gold);
}
.newsletter-submit {
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-submit:hover {
  background: var(--gold-dark);
}
.newsletter-success {
  color: var(--sage-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ============ SOCIAL LINKS ============ */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--cream-light);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ============ TRUST BADGES ============ */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--cream-light);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-badge span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

/* ============ SUBSCRIPTION DETAIL (product page) ============ */
.sub-section-detail {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sub-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.sub-section-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.sub-recommended-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(140, 107, 48, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}
.sub-toggle-detail {
  border-radius: 12px;
  border: 2px solid var(--cream-dark);
}
.sub-toggle-detail .sub-toggle-btn {
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.3;
}
.sub-btn-title {
  font-weight: 600;
  font-size: 0.85rem;
}
.sub-btn-price {
  font-size: 0.75rem;
  opacity: 0.6;
}
.sub-toggle-detail .sub-toggle-btn.active {
  border-radius: 10px;
}
.sub-toggle-detail .sub-toggle-btn.active .sub-btn-price {
  opacity: 1;
}
.sub-option-badge {
  display: inline-block;
  background: #e74c3c;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.2rem;
}
.sub-toggle-detail .sub-option.active .sub-option-badge {
  background: white;
  color: var(--gold-dark);
}
.sub-section-detail .sub-freq {
  margin-top: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}
.sub-freq-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-light);
}
.sub-freq-options {
  display: flex;
  gap: 0.5rem;
}
.sub-section-detail .sub-freq-btn {
  padding: 0.6rem 0.5rem;
  font-size: 0.8rem;
}
.sub-section-detail .sub-discount {
  display: none;
}
.sub-saving-box {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #f0f7f0, #e8f5e8);
  border: 1.5px solid #c8e6c8;
  border-radius: 10px;
  text-align: center;
}
.sub-saving-per-delivery {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #2d5a2d;
  margin-bottom: 0.25rem;
}
.sub-saving-annual {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #1a4a1a;
  font-weight: 700;
}
.sub-explainer {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: 12px;
  border: 1.5px solid var(--cream-dark);
}
.sub-explainer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.sub-explainer-title svg {
  color: var(--gold);
  flex-shrink: 0;
}
.sub-explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.sub-explainer-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--charcoal-light);
  line-height: 1.5;
  padding: 0.6rem;
  background: var(--cream-light);
  border-radius: 8px;
}
.sub-explainer-icon {
  margin-right: 0.3rem;
}
.sub-explainer-item strong {
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.15rem;
}
@media (max-width: 480px) {
  .sub-section-detail { padding: 1rem; }
  .sub-section-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .sub-toggle-detail .sub-toggle-btn { padding: 0.7rem 0.6rem; }
  .sub-btn-title { font-size: 0.78rem; }
  .sub-btn-price { font-size: 0.7rem; }
  .sub-explainer-grid { grid-template-columns: 1fr; }
  .sub-freq-options { flex-direction: column; }
}

/* ============ DELIVERY ESTIMATE ============ */
.delivery-estimate {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: #f0f7f0;
  border: 1px solid #d4e8d4;
  border-radius: 10px;
}
.delivery-estimate svg {
  flex-shrink: 0;
  color: #2d7a2d;
  margin-top: 2px;
}
.delivery-estimate span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #2d5a2d;
  line-height: 1.5;
}
.delivery-estimate strong {
  color: #1a4a1a;
}

/* ============ 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;
  }
  .hero-video { display: none; }
  .particle { display: none; }
}
