/* ==========================================================================
   THE SEDUCTION PERFUMERÍA - STYLESHEET
   Luxury Dark Mode & High-Conversion Sales Landing Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Official Colors */
  --color-gold-primary: #AD9551;
  --color-gold-light: #D4AF37;
  --color-gold-shimmer: #F5E6BA;
  --color-gold-dark: #7A6530;
  --color-gold-glow: rgba(173, 149, 81, 0.35);

  --color-silk-ivory: #F8F7F2;
  --color-text-muted: #B8B5AD;
  --color-text-dim: #7A7872;

  /* Luxury Dark Surfaces */
  --bg-onyx: #0A0A0C;
  --bg-surface-1: #121215;
  --bg-surface-2: #18171B;
  --bg-surface-card: rgba(22, 21, 25, 0.82);
  --bg-card-hover: rgba(28, 26, 32, 0.95);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(173, 149, 81, 0.28);
  --border-gold-bright: rgba(212, 175, 55, 0.65);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 0 25px rgba(173, 149, 81, 0.25);
  --shadow-gold-lg: 0 12px 35px rgba(173, 149, 81, 0.35);

  /* Container Widths */
  --container-max: 1360px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-onyx);
  color: var(--color-silk-ivory);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

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

.text-gold-gradient {
  background: linear-gradient(135deg, #F5E6BA 0%, #D4AF37 45%, #AD9551 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-danger {
  color: #ff5252;
}

.d-none {
  display: none !important;
}

/* --------------------------------------------------------------------------
   3. Typography & Section Headers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-silk-ivory);
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: rgba(173, 149, 81, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 1.25rem 2.6rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AD9551 50%, #8C7335 100%);
  color: #0A0A0C;
  box-shadow: 0 4px 15px rgba(173, 149, 81, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F5E6BA 0%, #D4AF37 60%, #AD9551 100%);
  box-shadow: 0 8px 25px rgba(173, 149, 81, 0.55);
  transform: translateY(-2px);
  color: #050507;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-silk-ivory);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: rgba(173, 149, 81, 0.08);
  color: var(--color-gold-light);
  border: 1px solid var(--border-gold);
}

.btn-outline-gold:hover {
  background: rgba(173, 149, 81, 0.22);
  border-color: var(--color-gold-light);
  color: var(--color-silk-ivory);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Top Announcement Bar
   -------------------------------------------------------------------------- */
.top-announcement {
  background: linear-gradient(90deg, #181510 0%, #2B2314 50%, #181510 100%);
  border-bottom: 1px solid rgba(173, 149, 81, 0.25);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: #E2DDCB;
  position: relative;
  z-index: 101;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.announcement-badge {
  background: var(--color-gold-primary);
  color: #0A0A0C;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

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

.announcement-link {
  color: var(--color-gold-shimmer);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.announcement-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 10, 12, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0.6rem 1.5rem;
  gap: 1.2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-primary);
  object-fit: cover;
  box-shadow: 0 0 15px var(--color-gold-glow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-silk-ivory);
  line-height: 1.15;
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.15;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0 0.5rem;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold-light);
  transition: var(--transition-smooth);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.cart-trigger-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.cart-trigger-btn:hover {
  background: rgba(173, 149, 81, 0.2);
  color: #fff;
  border-color: var(--color-gold-light);
}

.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-gold-light);
  color: #0A0A0C;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-silk-ivory);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 4.5rem 0 6rem 0;
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: #AD9551;
  top: -80px;
  left: 10%;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: #D4AF37;
  bottom: 0;
  right: 5%;
}

.glow-dust {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(173, 149, 81, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-gold-shimmer);
  background: rgba(173, 149, 81, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.6rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold-light);
}

.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.16;
  margin-bottom: 1.3rem;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--color-text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  margin-bottom: 2.2rem;
  backdrop-filter: blur(10px);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: var(--border-subtle);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card-display {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.pedestal-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(173, 149, 81, 0.45) 0%, rgba(173, 149, 81, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-image-container {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30, 28, 25, 0.8) 0%, rgba(18, 17, 19, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), var(--shadow-gold-glow);
  overflow: hidden;
  transition: var(--transition-slow);
}

.hero-image-container:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-6px) scale(1.01);
}

.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(18, 18, 22, 0.88);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.floating-badge strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-silk-ivory);
}

.floating-badge span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.badge-top {
  top: -15px;
  right: -20px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.badge-bottom {
  bottom: -15px;
  left: -20px;
  animation: floatUpDown 4.5s ease-in-out infinite reverse;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   8. Quality & Pillars Section
   -------------------------------------------------------------------------- */
.quality-section {
  background: linear-gradient(180deg, var(--bg-onyx) 0%, var(--bg-surface-1) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.quality-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.quality-card:hover, .quality-card.active-border {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-glow);
}

.card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(173, 149, 81, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.quality-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.quality-card-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-highlight {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-light);
}

/* Comparison Banner */
.comparison-banner {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-card);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.comp-header h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
}

.comp-them .comp-header h4 {
  color: #ff7b7b;
}

.comp-us .comp-header h4 {
  color: var(--color-gold-shimmer);
}

.comparison-banner ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comparison-banner li {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.comparison-banner li i {
  margin-top: 4px;
}

.comp-vs {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold-light);
  background: rgba(173, 149, 81, 0.15);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
}

/* --------------------------------------------------------------------------
   9. Interactive Aroma Quiz
   -------------------------------------------------------------------------- */
.quiz-section {
  background: var(--bg-onyx);
  position: relative;
}

.quiz-container {
  background: linear-gradient(135deg, rgba(26, 24, 28, 0.9) 0%, rgba(14, 13, 16, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}

.step-question {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-silk-ivory);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.quiz-opt-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-silk-ivory);
  transition: var(--transition-smooth);
}

.quiz-opt-btn i {
  font-size: 2.2rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.quiz-opt-btn strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.quiz-opt-btn span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.quiz-opt-btn:hover {
  background: rgba(173, 149, 81, 0.15);
  border-color: var(--border-gold-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-glow);
}

.quiz-back-btn {
  margin: 0 auto;
  display: block;
}

.quiz-result-card {
  background: rgba(10, 10, 12, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.quiz-res-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

/* --------------------------------------------------------------------------
   10. Product Catalog Section
   -------------------------------------------------------------------------- */
.catalog-section {
  background: var(--bg-surface-1);
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  color: var(--color-silk-ivory);
  border-color: var(--border-gold);
}

.filter-btn.active {
  background: var(--color-gold-primary);
  color: #0A0A0C;
  border-color: var(--color-gold-primary);
  box-shadow: 0 4px 15px rgba(173, 149, 81, 0.4);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 255px));
  justify-content: center;
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  position: relative;
  width: 100%;
}

.product-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65), var(--shadow-gold-glow);
  transform: translateY(-4px);
}

.product-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}

.p-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.p-badge-bestseller {
  background: linear-gradient(135deg, #D4AF37, #AD9551);
  color: #0A0A0C;
}

.p-badge-trending {
  background: #E85D88;
  color: #fff;
}

.p-badge-popular {
  background: #2563EB;
  color: #fff;
}

.p-badge-exclusive {
  background: #8B5CF6;
  color: #fff;
}

.p-badge-volume {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-shimmer);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 205px;
  background: #0E0D10;
  cursor: pointer;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-img-wrapper:hover .img-overlay {
  opacity: 1;
}

.quick-view-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-silk-ivory);
  background: rgba(18, 18, 22, 0.92);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-details {
  padding: 0.95rem 1.05rem 1.1rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.p-category {
  font-size: 0.68rem;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.p-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #F59E0B;
  font-size: 0.7rem;
}

.p-stars span {
  color: var(--color-text-dim);
  font-size: 0.68rem;
  margin-left: 0.2rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  cursor: pointer;
}

.product-title:hover {
  color: var(--color-gold-light);
}

.product-short-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-notes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.note-chip {
  font-size: 0.66rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.18rem 0.48rem;
  border-radius: var(--radius-sm);
  color: #D3D0C6;
}

.product-pricing-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

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

.price-original {
  font-size: 0.72rem;
  color: var(--color-text-dim);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 2px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
  line-height: 1.1;
}

.card-buttons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-buttons .btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.card-buttons .btn-sm {
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   11. Promotions & Combos Section
   -------------------------------------------------------------------------- */
.promo-section {
  background: var(--bg-onyx);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.promo-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.featured-promo {
  background: linear-gradient(180deg, rgba(32, 28, 22, 0.95) 0%, rgba(18, 17, 19, 0.98) 100%);
  border: 2px solid var(--color-gold-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-gold-lg);
  transform: scale(1.03);
  z-index: 2;
}

.featured-promo:hover {
  transform: scale(1.03) translateY(-4px);
}

.promo-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F5E6BA, #D4AF37);
  color: #0A0A0C;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.promo-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.promo-tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-text-dim);
  text-transform: uppercase;
}

.promo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0.4rem 0;
}

.promo-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.promo-price-box {
  text-align: center;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.6rem;
}

.promo-original {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  text-decoration: line-through;
  display: block;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
}

.promo-currency {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

.promo-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-silk-ivory);
}

.promo-save-pill {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.promo-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   12. About & Storytelling Section
   -------------------------------------------------------------------------- */
.about-section {
  background: linear-gradient(180deg, var(--bg-surface-1) 0%, var(--bg-onyx) 100%);
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-card-art {
  position: relative;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-gold-glow);
}

.about-logo-focus {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid var(--color-gold-primary);
  box-shadow: 0 0 35px var(--color-gold-glow);
  object-fit: cover;
}

.about-badge-exp {
  margin-top: 2rem;
  background: rgba(173, 149, 81, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.exp-years {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  text-align: left;
  color: var(--color-silk-ivory);
  max-width: 140px;
  line-height: 1.3;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-gold-shimmer);
  margin-bottom: 1.4rem;
}

.about-paragraph {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 2rem 0;
}

.mv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  display: flex;
  gap: 1rem;
}

.mv-icon {
  font-size: 1.5rem;
  margin-top: 2px;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--color-silk-ivory);
}

.mv-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.founder-sign {
  border-left: 3px solid var(--color-gold-primary);
  padding-left: 1.2rem;
  margin-top: 1.8rem;
}

.founder-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-silk-ivory);
}

.founder-info span {
  font-size: 0.85rem;
  color: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   13. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--bg-surface-1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.featured-review {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.verified-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.t-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.t-quote {
  font-size: 0.95rem;
  color: var(--color-silk-ivory);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  flex-grow: 1;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(173, 149, 81, 0.2);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.t-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.t-location {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

/* Trust Strip */
.trust-metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
}

.trust-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-metric i {
  font-size: 2rem;
}

.trust-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--color-silk-ivory);
}

.trust-metric span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   14. FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-onyx);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-silk-ivory);
  background: transparent;
}

.faq-question:hover {
  color: var(--color-gold-light);
}

.faq-arrow {
  color: var(--color-gold-light);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.6rem 1.6rem 1.6rem;
  transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. Final CTA Section
   -------------------------------------------------------------------------- */
.cta-final-section {
  background: var(--bg-onyx);
  padding: 3rem 0 6rem 0;
}

.cta-card-luxury {
  position: relative;
  background: linear-gradient(135deg, #1C1914 0%, #262117 50%, #151417 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 4.5rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-gold-lg);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1.2rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pulse-animation {
  animation: pulseGold 2.2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(173, 149, 81, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(173, 149, 81, 0); }
  100% { box-shadow: 0 0 0 0 rgba(173, 149, 81, 0); }
}

.cta-footer-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--border-gold);
  padding: 4.5rem 0 2rem 0;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-primary);
  object-fit: cover;
}

.f-brand-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-silk-ivory);
  letter-spacing: 1px;
}

.f-brand-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  color: var(--color-gold-light);
  letter-spacing: 2.5px;
}

.footer-slogan {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-gold-shimmer);
  margin-bottom: 0.8rem;
}

.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--color-silk-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-social-links a:hover {
  background: var(--color-gold-primary);
  color: #0A0A0C;
  border-color: var(--color-gold-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
  margin-bottom: 1.3rem;
  letter-spacing: 0.5px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-menu a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.footer-menu a:hover {
  color: var(--color-gold-light);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
}

.footer-contact-list strong {
  display: block;
  color: var(--color-silk-ivory);
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.74rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   17. Floating WhatsApp Widget & Tooltip
   -------------------------------------------------------------------------- */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-tooltip {
  background: #18171B;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  max-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  margin-bottom: 12px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.wa-tooltip-close {
  position: absolute;
  top: 6px;
  right: 10px;
  color: var(--color-text-dim);
  font-size: 1.1rem;
}

.wa-tooltip-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.wa-tooltip-header strong {
  font-size: 0.82rem;
  color: var(--color-silk-ivory);
}

.wa-tooltip-msg {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition-smooth);
  animation: waPulse 3s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

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

/* --------------------------------------------------------------------------
   18. Cart / Order Builder Drawer
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-surface-2);
  border-left: 1px solid var(--border-gold);
  z-index: 160;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
}

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

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

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cart-header-title h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.drawer-close-btn {
  font-size: 1.6rem;
  color: var(--color-text-dim);
  line-height: 1;
}

.drawer-close-btn:hover {
  color: #fff;
}

.cart-drawer-body {
  padding: 1.4rem 1.6rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-icon {
  font-size: 3rem;
  color: var(--color-gold-dark);
  margin-bottom: 1.2rem;
}

.empty-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Cart item */
.cart-item-card {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  position: relative;
}

.cart-item-thumb {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

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

.cart-item-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
}

.cart-item-sub {
  font-size: 0.75rem;
  color: var(--color-gold-light);
}

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

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.4rem;
}

.qty-btn {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-number {
  font-size: 0.82rem;
  font-weight: 700;
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-silk-ivory);
}

.cart-item-remove {
  color: #ff5252;
  font-size: 0.85rem;
  align-self: flex-start;
  padding: 2px;
}

.cart-drawer-footer {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 10, 12, 0.9);
}

.cart-promo-notice {
  background: rgba(173, 149, 81, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  color: var(--color-gold-shimmer);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.cart-total-amount {
  color: var(--color-gold-light);
  font-size: 1.35rem;
}

/* --------------------------------------------------------------------------
   19. Product Quick View Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.product-modal {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-gold-lg);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.8rem;
  color: var(--color-text-dim);
  z-index: 10;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.2rem;
  padding: 2.2rem;
}

.modal-img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.modal-info-col {
  display: flex;
  flex-direction: column;
}

.m-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.m-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.m-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold-shimmer);
  margin-bottom: 1.2rem;
}

.m-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.m-pyramid {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.8rem;
}

.pyramid-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.pyramid-item:last-child {
  margin-bottom: 0;
}

.pyramid-level {
  font-weight: 700;
  color: var(--color-gold-light);
  width: 75px;
}

.pyramid-notes {
  color: var(--color-silk-ivory);
}

/* --------------------------------------------------------------------------
   20. Toast Notification
   -------------------------------------------------------------------------- */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(20, 19, 24, 0.95);
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-gold-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

/* --------------------------------------------------------------------------
   21. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .comparison-banner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .comp-vs {
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-card-art {
    max-width: 400px;
    margin: 0 auto;
  }

  .founder-sign {
    border-left: none;
    border-top: 2px solid var(--color-gold-primary);
    padding-left: 0;
    padding-top: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1220px) {
  .main-nav .nav-list {
    gap: 0.8rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .nav-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    padding: 2rem 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }

  .top-announcement {
    text-align: center;
    padding: 0.4rem 0.5rem;
  }

  .announcement-content {
    justify-content: center;
    gap: 0.4rem;
  }

  .announcement-text {
    font-size: 0.76rem;
  }

  .hero-section {
    padding: 3rem 0 4.5rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex-basis: 45%;
    text-align: center;
  }

  .badge-top, .badge-bottom {
    display: none;
  }

  .hero-card-display {
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-main-img {
    height: 310px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-img-wrapper {
    height: 185px;
  }

  .product-details {
    padding: 0.85rem 0.9rem;
  }

  /* Filter bar horizontal scroll on touch */
  .filter-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2.2rem;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.55rem 1.1rem;
  }

  .comparison-banner {
    padding: 1.6rem 1.2rem;
    gap: 1.5rem;
  }

  .quiz-container {
    padding: 2.2rem 1.2rem;
  }

  .quiz-result-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .modal-content-grid {
    grid-template-columns: 1fr;
    padding: 1.4rem;
    gap: 1.2rem;
  }

  .modal-img-col img {
    height: 240px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.9rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .cta-buttons-wrap .btn {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-img-wrapper {
    height: 155px;
  }

  .product-details {
    padding: 0.65rem 0.65rem 0.85rem 0.65rem;
  }

  .product-title {
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
  }

  .product-short-desc {
    display: none;
  }

  .product-notes-chips {
    gap: 0.25rem;
    margin-bottom: 0.45rem;
  }

  .note-chip {
    font-size: 0.6rem;
    padding: 0.12rem 0.35rem;
  }

  .product-pricing-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }

  .price-current {
    font-size: 0.95rem;
  }

  .card-buttons {
    width: 100%;
    display: flex;
    gap: 0.3rem;
  }

  .card-buttons .btn-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .card-buttons .btn-gold {
    flex-grow: 1;
    padding: 0.35rem 0.5rem;
    font-size: 0.72rem;
    justify-content: center;
  }

  .floating-wa-btn {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .wa-tooltip {
    max-width: 220px;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   INSTAGRAM REELS SECTION & VIDEO SHOWCASE STYLES
   ========================================================================== */
.reels-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(173, 149, 81, 0.08) 0%, rgba(10, 10, 12, 1) 70%);
  padding: 6rem 0;
  border-top: 1px solid rgba(173, 149, 81, 0.15);
  border-bottom: 1px solid rgba(173, 149, 81, 0.15);
  overflow: hidden;
}

.reels-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* Reel Card & Smartphone Frame */
.reel-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(173, 149, 81, 0.25);
}

.reel-phone-frame {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header inside card */
.reel-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(14, 13, 17, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.reel-user-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reel-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold-primary);
}

.reel-user-meta {
  display: flex;
  flex-direction: column;
}

.reel-username {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
  letter-spacing: -0.2px;
}

.verify-badge {
  color: #3897F0;
  font-size: 0.75rem;
}

.reel-audio-name {
  font-size: 0.68rem;
  color: var(--color-text-muted);
}

.reel-ig-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E1306C;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.reel-ig-icon:hover {
  background: linear-gradient(45deg, #F58529, #D62976, #962FBF, #4F5BD5);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}

/* Media preview wrapper */
.reel-media-wrapper {
  position: relative;
  aspect-ratio: 9 / 13;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.reel-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.reel-card:hover .reel-poster-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.reel-backdrop-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.reel-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 13, 17, 0.95) 0%, rgba(14, 13, 17, 0.2) 45%, rgba(14, 13, 17, 0.4) 100%);
  pointer-events: none;
}

/* Floating tags */
.reel-floating-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.reel-tag-pill {
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(173, 149, 81, 0.4);
  color: var(--color-gold-shimmer);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.reel-tag-pill.tag-pink {
  border-color: rgba(225, 48, 108, 0.5);
  color: #FFA5C8;
}

.reel-tag-pill.tag-blue {
  border-color: rgba(56, 151, 240, 0.5);
  color: #92CCFF;
}

.reel-views-pill {
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-silk-ivory);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.reel-views-pill i {
  color: var(--color-gold-light);
}

/* Play trigger icon */
.reel-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.reel-card:hover .reel-play-trigger {
  transform: translate(-50%, -50%) scale(1.12);
}

.play-pulse-ring {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(173, 149, 81, 0.6);
  animation: playPulse 2.2s infinite ease-out;
}

.play-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-primary));
  box-shadow: 0 0 25px rgba(173, 149, 81, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0C;
  font-size: 1.35rem;
  padding-left: 4px;
}

@keyframes playPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Bottom info inside reel card */
.reel-bottom-info {
  padding: 1.15rem 1.25rem;
  background: rgba(14, 13, 17, 0.95);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.reel-caption-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
  margin-bottom: 0.45rem;
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.2s ease;
}

.reel-caption-title:hover {
  color: var(--color-gold-light);
}

.reel-caption-text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Audio pill & equalizer */
.reel-audio-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--color-gold-shimmer);
  margin-bottom: 1rem;
}

.reel-audio-pill i {
  color: var(--color-gold-light);
  font-size: 0.75rem;
}

.reel-audio-pill span {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  padding-right: 2px;
}

.reel-equalizer span {
  display: block;
  width: 2.5px;
  background: var(--color-gold-light);
  border-radius: 1px;
  animation: eqBounce 1.2s infinite ease-in-out alternate;
}

.reel-equalizer span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.reel-equalizer span:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.reel-equalizer span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.reel-equalizer span:nth-child(4) { height: 10px; animation-delay: 0.4s; }

@keyframes eqBounce {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Actions row */
.reel-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: auto;
}

.reel-actions-row .btn-instagram {
  width: 100%;
  justify-content: center;
}

.btn-instagram {
  background: linear-gradient(45deg, #F58529, #D62976, #962FBF, #4F5BD5);
  color: #fff !important;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.05rem;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 41, 118, 0.45);
}

.btn-instagram.btn-lg {
  padding: 0.75rem 1.45rem;
  font-size: 0.95rem;
}

.reel-like-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-silk-ivory);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.reel-like-btn:hover {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.4);
  color: #E1306C;
}

.reel-like-btn.liked {
  background: rgba(225, 48, 108, 0.2);
  border-color: #E1306C;
  color: #E1306C;
  animation: heartPop 0.35s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Instagram Community Banner */
.instagram-community-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(24, 23, 27, 0.92) 0%, rgba(15, 14, 18, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.instagram-community-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F58529, #D62976, #962FBF, var(--color-gold-primary));
}

.ig-banner-visual {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 680px;
}

.ig-banner-icon-box {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(45deg, #F58529, #D62976, #962FBF, #4F5BD5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 0 10px 25px rgba(214, 41, 118, 0.4);
}

.ig-banner-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  display: block;
  margin-bottom: 0.35rem;
}

.ig-banner-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
  margin-bottom: 0.45rem;
}

.ig-banner-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.ig-banner-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ig-stat {
  font-size: 0.82rem;
}

.ig-stat strong {
  color: var(--color-gold-shimmer);
  font-weight: 700;
}

.ig-stat span {
  color: var(--color-text-dim);
  margin-left: 0.25rem;
}

.ig-stat-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.ig-banner-action {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: 250px;
}

.ig-banner-action .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   REEL VIDEO PLAYER MODAL STYLES
   ========================================================================== */
.reel-modal-window {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 840px;
  width: 95%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  position: relative;
  z-index: 10001;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-modal-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 520px;
}

.reel-modal-player-col {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reel-player-container {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050507;
}

.reel-player-container video {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: none;
}

.reel-player-container video.active {
  display: block;
}

.reel-player-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reel-modal-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.reel-player-fallback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.ig-fallback-icon {
  font-size: 3.2rem;
  color: #E1306C;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 4px 12px rgba(225, 48, 108, 0.4));
}

.reel-player-fallback-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-silk-ivory);
  margin-bottom: 0.4rem;
}

.reel-player-fallback-overlay p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 1.2rem;
}

/* Modal Info Side */
.reel-modal-info-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface-card);
  overflow-y: auto;
}

.reel-modal-user-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.reel-modal-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-primary);
}

.modal-username {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--color-silk-ivory);
}

.modal-user-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.btn-xs {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
}

.reel-modal-caption-wrap {
  margin-bottom: 1.5rem;
}

.reel-modal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-silk-ivory);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.reel-modal-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.reel-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Product Card inside Reel modal */
.reel-modal-product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 10, 12, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

.reel-prod-thumb {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.reel-prod-info {
  display: flex;
  flex-direction: column;
}

.reel-prod-info strong {
  font-size: 0.95rem;
  color: var(--color-silk-ivory);
}

.reel-prod-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.reel-prod-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.reel-modal-footer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Responsive adjustments for Reels */
@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-community-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .ig-banner-action {
    width: 100%;
  }

  .reel-modal-grid {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .reel-player-container {
    min-height: 280px;
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .reels-section {
    padding: 4rem 0;
  }

  /* Horizontal swipe scroll on mobile */
  .reels-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 0.5rem 0.25rem 1.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .reels-grid::-webkit-scrollbar {
    height: 5px;
  }

  .reels-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
  }

  .reels-grid::-webkit-scrollbar-thumb {
    background: var(--color-gold-primary);
    border-radius: 9999px;
  }

  .reel-card {
    min-width: 82vw;
    max-width: 82vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .ig-banner-visual {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ig-banner-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .ig-stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .reel-card {
    min-width: 86vw;
    max-width: 86vw;
  }

  .reel-actions-row {
    flex-wrap: wrap;
  }

  .btn-instagram {
    flex-grow: 1;
    justify-content: center;
  }
}

