/* ==========================================================================
   LEO PERFUMES - DESIGN SYSTEM & STYLESHEET
   Aesthetic: Luxury Black & Gold, Cinematic, Sophisticated, Modern Masculine
   ========================================================================== */

/* --- 1. Custom CSS Variables --- */
:root {
  --bg-primary: #080808;
  --bg-secondary: #111111;
  --bg-tertiary: #161616;
  --gold: #C9A84C;
  --gold-hover: #dec476;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --gold-glow-intense: rgba(201, 168, 76, 0.5);
  --text-primary: #F5F5F7;
  --text-secondary: #AEAEB2;
  --text-muted: #8E8E93;
  --border-color: rgba(201, 168, 76, 0.15);
  --border-color-hover: rgba(201, 168, 76, 0.35);
  
  --font-heading: 'Poppins', sans-serif;
  --font-price: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-speed: 0.5s;
  
  --header-height: 80px;
}

body.day-mode {
  --bg-primary: #F5F5F7;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #EBEBEF;
  --text-primary: #1C1C1E;
  --text-secondary: #48484A;
  --text-muted: #8E8E93;
  --border-color: rgba(168, 130, 32, 0.2);
  --border-color-hover: rgba(168, 130, 32, 0.4);
  --gold: #A88220; /* Bolder, deeper gold for high legibility on light backgrounds */
  --gold-hover: #8F6E1B;
  --gold-glow: rgba(168, 130, 32, 0.15);
}

/* --- 2. Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* --- 3. Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition-bezier);
}

.gold-text {
  color: var(--gold);
}

/* --- 4. Reusable Components & Buttons --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--transition-bezier);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--gold);
  color: #000;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 6px 20px var(--gold-glow-intense);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(201, 168, 76, 0.05);
}

.btn-secondary-icon {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-bezier);
}

.btn-secondary-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(201, 168, 76, 0.05);
}

.btn-block {
  display: flex;
  width: 100%;
}

.icon {
  width: 20px;
  height: 20px;
}

/* --- 5. Loading Screen --- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--transition-bezier), visibility 0.6s var(--transition-bezier);
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-logo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: logoFadeGlow 1.5s var(--transition-bezier) forwards;
}

@keyframes logoFadeGlow {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(201, 168, 76, 0));
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 20px var(--gold));
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    transform: scale(1);
  }
}

/* --- 6. Sticky Header & Navigation --- */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background-color: var(--gold);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 1100;
  text-transform: uppercase;
  font-family: var(--font-body);
  overflow: hidden;
}

.announcement-bar span {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .announcement-bar {
    justify-content: flex-start;
  }
  .announcement-bar span {
    padding-left: 100%;
    animation: announcementMarquee 25s linear infinite;
  }
}

@keyframes announcementMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.main-header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.4s var(--transition-bezier);
}

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

.header-logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 52px;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s var(--transition-bezier);
}

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  padding: 8px;
  transition: color 0.3s var(--transition-bezier);
}

.action-btn:hover {
  color: var(--gold);
}

.action-btn .badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--gold);
  color: #000;
  font-family: var(--font-price);
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile Hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s var(--transition-bezier);
}

/* Hamburger active states */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--gold);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--gold);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: calc(var(--header-height) + 36px);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height) - 36px);
  background-color: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition-bezier);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 40px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.brand-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}

.mobile-menu-footer .social-icons {
  display: flex;
  gap: 20px;
}

.social-icon-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- 7. Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #181818 0%, var(--bg-primary) 100%);
  overflow: hidden;
  text-align: center;
  padding-top: calc(var(--header-height) + 36px);
  transition: background 0.4s var(--transition-bezier);
}

body.day-mode .hero-section {
  background: radial-gradient(circle at center, #FFFFFF 0%, var(--bg-primary) 100%);
}

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

/* Fullscreen Background Watermark Logo */
.hero-background-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition-bezier);
}

body.day-mode .hero-background-logo {
  opacity: 0.04;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo Shimmer Animation */
.shimmer-logo {
  position: relative;
  animation: shimmer 4s var(--transition-bezier) infinite;
}

@keyframes shimmer {
  0% {
    filter: brightness(1) drop-shadow(0 0 2px rgba(201, 168, 76, 0));
  }
  15% {
    filter: brightness(1.3) drop-shadow(0 0 15px var(--gold));
  }
  30% {
    filter: brightness(1) drop-shadow(0 0 2px rgba(201, 168, 76, 0));
  }
  100% {
    filter: brightness(1) drop-shadow(0 0 2px rgba(201, 168, 76, 0));
  }
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

body.day-mode .hero-title {
  text-shadow: 0 4px 10px rgba(255, 255, 255, 0.4);
}

.hero-tagline {
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 36px;
  font-family: var(--font-body);
  font-weight: 500;
}

.btn-hero {
  padding: 16px 36px;
  font-size: 0.9rem;
}

/* Hero Promo Packages */
.hero-promo-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 580px;
  margin-top: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.hero-promo-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  transition: all 0.4s var(--transition-bezier);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

body.day-mode .hero-promo-card {
  background: rgba(0, 0, 0, 0.02);
}

.hero-promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.hero-promo-card.highlighted {
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.08);
}

body.day-mode .hero-promo-card.highlighted {
  background: rgba(168, 130, 32, 0.03);
  box-shadow: 0 4px 20px rgba(168, 130, 32, 0.05);
}

.promo-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: var(--gold);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.hero-promo-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-promo-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.gold-highlight {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .hero-promo-container {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  
  .hero-promo-card {
    padding: 12px 16px;
  }
  
  .hero-promo-card h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  
  .hero-promo-card p {
    font-size: 0.72rem;
  }
}

/* Cart Icon Pulse Animation */
@keyframes cartPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
    color: var(--gold);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.pulse-anim {
  animation: cartPulse 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.1) !important;
}

body.day-mode .pulse-anim {
  background-color: rgba(168, 130, 32, 0.1) !important;
}

/* Cart Promo Progress Banner */
.cart-promo-banner {
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  display: none;
}

.promo-progress-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.day-mode .promo-progress-card {
  background: rgba(0, 0, 0, 0.02);
}

.promo-progress-card.unlocked {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

body.day-mode .promo-progress-card.unlocked {
  background: rgba(168, 130, 32, 0.02);
}

.promo-progress-card.fully-unlocked {
  border-color: #30d158;
  background: rgba(48, 209, 88, 0.05);
}

body.day-mode .promo-progress-card.fully-unlocked {
  background: rgba(48, 209, 88, 0.03);
}

.promo-progress-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.promo-progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

body.day-mode .promo-progress-bar-container {
  background: rgba(0, 0, 0, 0.08);
}

.promo-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.promo-progress-bar.unlocked {
  background: linear-gradient(90deg, var(--gold) 0%, #dec476 100%);
  animation: pulseBar 2s infinite ease-in-out;
}

.promo-progress-bar.fully-unlocked {
  background: #30d158;
}

@keyframes pulseBar {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

/* --- 8. Animations (Character Reveal & Scroll Reveal) --- */
/* Character Reveal Heading Animation */
.char-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.char {
  display: inline-block;
  transform: translateY(110%);
  filter: blur(4px);
  opacity: 0;
  transition: transform 0.7s var(--transition-bezier), filter 0.7s var(--transition-bezier), opacity 0.7s var(--transition-bezier);
  will-change: transform, filter, opacity;
}

/* Hero section title animates on page load */
.hero-section .char {
  animation: revealChar 0.8s var(--transition-bezier) forwards;
}

/* Scroll revealed sections transition letters when entering viewport */
.scroll-reveal.reveal-visible .char {
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
}

@keyframes revealChar {
  0% {
    transform: translateY(110%);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

/* Crisp vertical slide fade scroll reveal (no tilts to keep text blurry-free) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-bezier), transform 0.8s var(--transition-bezier);
  will-change: transform, opacity;
}

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

.scroll-left,
.scroll-right {
  transform: translateY(30px);
}

/* Staggered Product Cards Entrance */
.product-card-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--transition-bezier), transform 0.6s var(--transition-bezier);
  will-change: transform, opacity;
}

.product-card-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 9. Product Catalog --- */
.catalog-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: 16px auto 0;
}

/* Search and Filters Box */
.filter-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.search-container {
  position: relative;
  margin-bottom: 24px;
}

.search-container input {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 14px 20px 14px 48px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 0;
  transition: all 0.3s var(--transition-bezier);
}

.search-container input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  pointer-events: none;
}

.filters-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  width: 120px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--transition-bezier);
  text-transform: uppercase;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--text-primary);
}

.filter-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
}

.filter-select {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--transition-bezier);
  text-transform: uppercase;
  border-radius: 0;
  outline: none;
  font-family: var(--font-body);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--gold);
  color: var(--text-primary);
  box-shadow: 0 0 8px var(--gold-glow);
}

.filter-select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  text-transform: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Product Card */
.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s var(--transition-bezier), box-shadow 0.3s var(--transition-bezier);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 12px rgba(201, 168, 76, 0.15);
}

.wishlist-heart-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16, 16, 16, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s var(--transition-bezier);
  z-index: 10;
}

.wishlist-heart-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}

.wishlist-heart-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Depth Parallax Content */
.product-card-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 110%;
  overflow: hidden;
  background-color: var(--bg-primary);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.product-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition-bezier);
  transform: scale(1);
}

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

.product-card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  text-align: center;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sale-price {
  font-family: var(--font-price);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.original-price {
  font-family: var(--font-price);
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: 0.05em;
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Quantity Selectors */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  height: 40px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  width: 40px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--transition-bezier), color 0.2s var(--transition-bezier);
}

.qty-btn:hover {
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.qty-value {
  font-family: var(--font-price);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Card Add To Cart */
.btn-card-add {
  height: 40px;
  padding: 0;
  font-size: 0.75rem;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-card-add:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Fade out animation for filtering */
.product-card-wrapper {
  transition: opacity 0.4s var(--transition-bezier), transform 0.4s var(--transition-bezier);
}

.product-card-wrapper.filtered-out {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
}

/* --- 10. Trust & Benefits Section --- */
.trust-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.trust-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--transition-bezier);
  cursor: pointer;
}

.trust-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.08);
  transform: translateY(-4px);
}

.trust-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background-color: var(--bg-secondary);
  transition: all 0.4s var(--transition-bezier);
}

.trust-card:hover .trust-icon-wrapper {
  color: #000;
  background-color: var(--gold);
  border-color: var(--gold);
}

.trust-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* --- 11. Contact & Connect Section --- */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.contact-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.contact-info-panel {
  text-align: center;
}

.contact-desc {
  font-size: 0.95rem;
  margin: 16px auto 40px;
  max-width: 500px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-method-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s var(--transition-bezier);
}

.contact-method-card:hover {
  border-color: var(--gold);
  background-color: rgba(201, 168, 76, 0.03);
  transform: translateY(-2px);
}

.contact-method-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-method-icon svg {
  width: 28px;
  height: 28px;
}

.contact-method-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-method-card p {
  font-size: 0.75rem;
  word-break: normal;
  overflow-wrap: break-word;
}

/* --- 12. Footer --- */
.main-footer {
  background-color: #040404;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-logo {
  height: 60px;
  align-self: flex-start;
}

.footer-brand-desc {
  font-size: 0.85rem;
  max-width: 420px;
}

.footer-links-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-links-col a,
.footer-link-btn {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-links-col a:hover,
.footer-link-btn:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-link-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  transition: all 0.3s var(--transition-bezier);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* --- 13. Drawers (Cart and Wishlist) --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.4s;
}

.cart-drawer.active {
  visibility: visible;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.4s var(--transition-bezier);
}

.cart-drawer.active .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-bezier);
}

.cart-drawer.active .cart-drawer-container {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s var(--transition-bezier);
}

.close-btn:hover {
  border-color: var(--border-color);
  color: var(--gold);
}

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

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  position: relative;
}

.cart-item-img-wrapper {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

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

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

.cart-item-details h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cart-item-price {
  font-family: var(--font-price);
  font-size: 1.15rem;
  color: var(--gold);
}

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

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  height: 32px;
}

.cart-item-qty .qty-btn {
  width: 32px;
}

.cart-item-qty .qty-value {
  padding: 0 8px;
  font-size: 1rem;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 20px;
}

.cart-empty-state svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
}

.cart-empty-state p {
  font-size: 0.9rem;
}

/* Cart Footer / Summary */
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.discount-line {
  color: #ff453a;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  margin-top: 4px;
  color: var(--text-primary);
}

.summary-total span:last-child {
  color: var(--gold);
}

/* --- 14. Modals (Detail, Checkout, Success, Return Policy) --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: visibility 0.4s;
}

.modal.active {
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.4s var(--transition-bezier);
}

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

.modal-content {
  position: relative;
  z-index: 10;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  padding: 40px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s var(--transition-bezier), opacity 0.4s var(--transition-bezier);
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 3px;
}

.modal-content .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Detail Modal Grid Layout */
.modal-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 40px;
}

.modal-image-wrapper {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding-bottom: 110%;
  position: relative;
  overflow: hidden;
}

.modal-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details-wrapper {
  display: flex;
  flex-direction: column;
}

.modal-product-name {
  font-size: 2rem;
  margin-bottom: 12px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-color);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}

.modal-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.modal-price-box .sale-price {
  font-size: 1.8rem;
}
.modal-price-box .original-price {
  font-size: 1.3rem;
}

.modal-desc-box {
  margin-bottom: 24px;
}
.modal-desc-box p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.modal-notes-box {
  margin-bottom: 24px;
}
.modal-notes-box h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.notes-list {
  list-style: none;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notes-list li {
  color: var(--text-secondary);
}

.notes-list strong {
  color: var(--text-primary);
}

/* Modal policy alert box */
.modal-policy-alert {
  background-color: rgba(201, 168, 76, 0.05);
  border-left: 2px solid var(--gold);
  padding: 16px;
  margin-bottom: 30px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.alert-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-alert-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.modal-action-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: auto;
}

.modal-action-row .quantity-selector {
  width: 130px;
  flex-shrink: 0;
}

.modal-action-row .btn-primary {
  flex-grow: 1;
}

/* --- 15. Checkout Modal & Layout --- */
.checkout-modal-content {
  max-width: 960px;
  padding: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 60vh;
}

.checkout-form-container {
  padding: 48px;
}

.checkout-form-container h3,
.checkout-summary-container h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.checkout-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.form-group label .required {
  color: #ff453a;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 0;
  transition: all 0.3s var(--transition-bezier);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.checkout-commitment-group {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(201, 168, 76, 0.04);
  border: 1px dashed var(--border-color);
  padding: 14px 16px;
  margin-top: 8px;
}

.checkout-commitment-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
}

.checkout-commitment-group .checkbox-label {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  cursor: pointer;
}

.checkout-policy-notice {
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  margin-top: 8px;
}

.policy-quote {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Checkout Summary Column (Right) */
.checkout-summary-container {
  background-color: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.checkout-summary-items {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 24px;
  max-height: 250px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.checkout-item-info {
  display: flex;
  flex-direction: column;
}

.checkout-item-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.checkout-item-qty {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-summary-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- 16. Return Policy Dedicated Modal --- */
.info-modal-content {
  max-width: 600px;
}

.info-modal-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.policy-content {
  margin-bottom: 30px;
}

.policy-main-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  background-color: rgba(201, 168, 76, 0.05);
  border-left: 3px solid var(--gold);
  padding: 18px;
  margin-bottom: 24px;
}

.policy-content h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

/* --- 17. Success Modal --- */
.success-modal-content {
  max-width: 520px;
  text-align: center;
  padding: 48px 32px;
}

.success-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #30d158;
  color: #30d158;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon {
  width: 32px;
  height: 32px;
}

.success-modal-content h3 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.success-modal-content p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.order-details-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-whatsapp-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px !important;
}

.success-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- 18. Responsive Breakpoints & Mobile-First Audits --- */

/* Desktop Screens Large (1440px) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

/* Tablets Landscape & Laptops (1024px) */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

/* Tablets Portrait (768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .filter-wrapper {
    padding: 16px;
  }
  
  .filter-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  
  .filter-label {
    width: auto;
  }

  .filter-buttons {
    justify-content: center;
  }
  
  .modal-content {
    padding: 30px 20px 20px;
  }
  
  .modal-body-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .modal-image-wrapper {
    padding-bottom: 80%;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary-container {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding: 32px 24px;
  }
  .checkout-form-container {
    padding: 32px 24px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .header-container {
    padding: 0 12px;
  }
  
  .header-logo {
    height: 40px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  
  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  
  /* 2 products next to each other on mobile phones */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Scale down product card elements on mobile */
  .product-card {
    padding: 10px;
  }
  
  .product-card-badge {
    font-size: 0.55rem;
    padding: 4px 8px;
    top: 8px;
    left: 8px;
  }
  
  .wishlist-heart-btn {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
  
  .wishlist-heart-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  .product-card-image-container {
    margin-bottom: 12px;
  }
  
  .product-name {
    font-size: 0.85rem;
    margin-bottom: 6px;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-perf-stats {
    padding: 6px 0;
    margin-bottom: 8px;
    gap: 6px;
  }
  
  .stat-info {
    font-size: 0.62rem;
    margin-bottom: 2px;
  }
  
  .stat-info strong {
    font-size: 0.62rem;
  }
  
  .rating-block {
    height: 3px;
  }
  
  .product-price-row {
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .sale-price {
    font-size: 1.1rem;
  }
  
  .original-price {
    font-size: 0.85rem;
  }
  
  .qty-status-row {
    font-size: 0.62rem;
    margin-bottom: 4px;
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }
  
  .quantity-selector {
    height: 32px;
  }
  
  .qty-btn {
    width: 32px;
  }
  
  .qty-value {
    font-size: 0.95rem;
  }
  
  .btn-card-add {
    height: 32px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
  
  /* Stack benefit cards on mobile phones */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-card {
    padding: 20px 10px;
  }
  
  .trust-icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  
  .trust-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  
  .trust-card h3 {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  
  .trust-card p {
    font-size: 0.68rem;
    line-height: 1.35;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand-col {
    grid-column: span 1;
  }
  
  .cart-drawer-container {
    max-width: 100%;
  }
  
  .modal-action-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .modal-action-row .quantity-selector {
    width: 100%;
  }
}

/* --- 19. Cursor Trail (Desktop Only) --- */
/* Cursor trail dot rules removed */

/* --- 20. Product Card Badges, Status and Stats --- */
.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.qty-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.qty-label {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.in-cart-status {
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-perf-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
  margin-bottom: 14px;
}

body.day-mode .product-perf-stats {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.stat-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 3px;
}

.stat-info strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Rating Blocks / Segments */
.rating-blocks {
  display: flex;
  gap: 4px;
  width: 100%;
}

.rating-block {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  transition: background-color 0.3s;
}

body.day-mode .rating-block {
  background-color: rgba(0, 0, 0, 0.12); /* darker gray for inactive visibility on white */
}

.rating-block.active {
  background-color: var(--gold);
  box-shadow: 0 0 4px var(--gold-glow);
}

body.day-mode .rating-block.active {
  background-color: var(--gold);
  box-shadow: none;
}

.modal-perf-stats {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

/* --- Storefront Coming Soon Layout --- */
.coming-soon-wrapper {
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.coming-soon-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 48px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.coming-soon-icon {
  font-size: 2.5rem;
  animation: sparkle 2.5s infinite ease-in-out;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(201, 168, 76, 0)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 10px var(--gold)); }
}

.coming-soon-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.coming-soon-tag {
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-color);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  text-transform: uppercase;
}

.coming-soon-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
