/* ═══════════════════════════════════════════════════
   JOSEPHINE JEWELRY — Premium Design System
   Inspired by: Swarovski / Tiffany editorial aesthetic
   ═══════════════════════════════════════════════════ */

:root {
  /* ── Gold — brighter, warmer ── */
  --gold:        #C9A43A;
  --gold-light:  #E8C060;
  --gold-pale:   rgba(232,192,96,0.12);
  --gold-dim:    rgba(201,164,58,0.1);

  /* ── Purple — deep dark bg + vivid accents ── */
  --purple:      #A855F7;
  --purple-deep: #100820;
  --purple-dark: #180D30;
  --purple-mid:  #C084FC;
  --purple-pale: rgba(192,132,252,0.12);

  /* ── Semantic — DARK LUXURY ── */
  --black:       #100820;          /* dark bg (slightly lighter purple) */
  --charcoal:    #F0ECFF;          /* primary text — crisp white-purple */
  --stone:       rgba(220,190,255,0.72);  /* secondary text — more visible */
  --cream:       #100820;          /* body background */
  --white:       #F4F0FF;          /* bright text / light surfaces */
  --border:      rgba(192,132,252,0.22);
  --border-dark: rgba(192,132,252,0.12);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  background-color: #100820;
  background-image:
    radial-gradient(ellipse at 50% -5%,  rgba(168,85,247,0.42) 0%, transparent 52%),
    radial-gradient(ellipse at 85% 35%,  rgba(192,132,252,0.13) 0%, transparent 38%),
    radial-gradient(ellipse at 15% 65%,  rgba(168,85,247,0.11) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 105%, rgba(201,164,58,0.07)  0%, transparent 48%);
  background-attachment: fixed;
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── AURORA ANIMATION (floating glow layer) ── */
body::after {
  content: '';
  position: fixed;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(168,85,247,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 65%, rgba(192,132,252,0.13) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(201,164,58,0.04)  0%, transparent 50%);
  animation: auroraFloat 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes auroraFloat {
  0%   { transform: translate(0%,   0%)   scale(1);    }
  30%  { transform: translate(4%,   3%)   scale(1.06); }
  60%  { transform: translate(-3%,  5%)   scale(0.96); }
  100% { transform: translate(3%,  -3%)   scale(1.04); }
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── HEADER ── */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 100;
  padding: 22px 52px;
  transition: all 0.4s ease;
}

.overlay-header {
  position: fixed;
  top: 40px;
  left: 0;
  background: transparent;
}

.overlay-header.scrolled {
  top: 0;
  background: rgba(10, 5, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,132,252,0.15);
  box-shadow: 0 2px 32px rgba(0,0,0,0.55);
}

.normal-header {
  position: sticky;
  top: 0;
  background: rgba(10, 5, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,132,252,0.15);
  box-shadow: 0 2px 32px rgba(0,0,0,0.55);
}

/* ── LOGO ── */
.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.brand-text h1 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 6px;
  font-weight: 500;
  background: linear-gradient(90deg, #C9A43A 0%, #fff0b3 28%, #C9A43A 48%, #E8C060 68%, #C9A43A 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: josephineShimmer 3.5s linear infinite;
  margin: 0;
}

.brand-text p {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 7px;
  color: var(--gold-light);
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}
@keyframes josephineShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* ── NAVIGATION ── */
.premium-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.premium-menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.premium-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.premium-menu a:hover::after { width: 100%; }

.overlay-header.scrolled .premium-menu a,
.normal-header .premium-menu a {
  color: var(--charcoal);
}

.overlay-header.scrolled .premium-menu a:hover,
.normal-header .premium-menu a:hover {
  color: var(--gold);
}

/* ── DROPDOWN ── */
.menu-dropdown { position: relative; }
.menu-dropdown > a { display: inline-block; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 200;
}

.menu-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  color: var(--charcoal) !important;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.2s;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--gold) !important;
  padding-left: 28px;
}

/* ── CART BUTTON ── */
.header-actions { display: flex; align-items: center; gap: 14px; }

.header-actions .cart-toggle {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  padding: 9px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.header-actions .cart-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.header-actions .cart-toggle span {
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 6px;
  font-size: 10px;
}

.overlay-header.scrolled .header-actions .cart-toggle,
.normal-header .header-actions .cart-toggle {
  color: var(--charcoal);
  border-color: var(--border);
}

.overlay-header.scrolled .header-actions .cart-toggle span,
.normal-header .header-actions .cart-toggle span {
  background: var(--gold);
  color: var(--white);
}

/* ═══════════════════════════════════════
   HERO VIDEO
   ═══════════════════════════════════════ */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

.hero-dark-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.28) 60%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 88%);
  margin-top: 80px;
  color: var(--white);
  text-align: left;
}

.hero-mini-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-mini-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero-video-content h2 {
  font-family: var(--font-heading);
  font-size: 84px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.02;
  max-width: 780px;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-video-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  max-width: 520px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  line-height: 1.8;
}

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

.hero-btn {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.hero-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section {
  padding: 100px 40px;
  text-align: center;
}

.section-top-space { padding-top: 130px; }

.section h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.section h2 + * { margin-top: 20px; }

/* Ornamental line under section headings */
.section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
}

.catalog-text {
  color: var(--stone);
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-top: 10px;
}

/* ── FILTERS ── */
.filters-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 8px;
}

.search-input,
.price-filter {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 0;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  min-width: 240px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input::placeholder { color: var(--stone); }
.search-input:focus, .price-filter:focus { border-color: var(--gold); }

.subcategories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.subcategory-btn {
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
}

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

.subcategory-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ═══════════════════════════════════════
   PRODUCT GRID & CARDS
   ═══════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px 28px;
  margin-top: 48px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  position: relative;
  cursor: pointer;
}

.product-card.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Staggered cascade reveal */
.product-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.product-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.product-card.reveal:nth-child(4) { transition-delay: 0.18s; }

.product-card:hover {
  /* 3D tilt & lift handled by JS */
}

/* ── IMAGE WRAP — clips zoom, card shadow stays visible ── */
.product-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

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

/* ── PRODUCT BADGES ── */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  pointer-events: none;
  color: #fff;
}

.product-badge.badge-nou {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.product-badge.badge-popular {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
}

.product-badge.badge-oferta {
  background: linear-gradient(135deg, #c87fff, var(--purple-mid));
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin: 14px 0 3px;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0;
}

.product-card p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  margin: 0 0 10px;
  padding: 0;
  letter-spacing: 0.3px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 14px;
  color: var(--gold);
  padding: 0;
}

.product-card-actions {
  display: flex;
  gap: 8px;
  padding: 0;
}

.primary-card-btn,
.secondary-card-btn {
  flex: 1;
  border: none;
  padding: 11px 10px;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.primary-card-btn {
  background: var(--black);
  color: var(--white);
}

.primary-card-btn:hover {
  background: var(--gold);
}

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

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

.empty-products {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--stone);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  padding: 60px 0;
}

/* ═══════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════ */
.catalog-wrapper {
  max-width: 960px;
  margin: 40px auto 0;
}

.catalog-frame {
  position: relative;
  background: var(--white);
  padding: 16px;
  border-radius: 0;
  border: 1px solid var(--border);
}

.catalog-image {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border-radius: 0;
}

.catalog-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
}

.top-left    { top: 8px;    left: 8px;   border-right: none; border-bottom: none; }
.top-right   { top: 8px;    right: 8px;  border-left:  none; border-bottom: none; }
.bottom-left { bottom: 8px; left: 8px;   border-right: none; border-top: none;    }
.bottom-right{ bottom: 8px; right: 8px;  border-left:  none; border-top: none;    }

.catalog-nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.catalog-arrow {
  width: 46px;
  height: 46px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.catalog-arrow:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.catalog-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-view-btn,
.catalog-download-btn {
  padding: 13px 28px;
  border-radius: 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.catalog-view-btn {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.catalog-view-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.catalog-download-btn {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
}

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

/* ═══════════════════════════════════════
   DESPRE NOI
   ═══════════════════════════════════════ */
.despre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1040px;
  margin: 48px auto 0;
  text-align: left;
  align-items: start;
}

.despre-lead {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px !important;
}

.despre-text p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 14px;
}

.despre-values {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.despre-value {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.despre-value-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.despre-value-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

.despre-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--black);
  position: relative;
}

.despre-quote::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.despre-quote blockquote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.despre-quote cite {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ═══════════════════════════════════════
   ORGANIGRAMĂ
   ═══════════════════════════════════════ */
.organigrama-wrap {
  max-width: 900px;
  margin: 40px auto 0;
  border: 1px solid var(--border);
  padding: 12px;
  background: var(--white);
  position: relative;
}

.organigrama-img {
  width: 100%;
  display: block;
}

.organigrama-placeholder {
  text-align: center;
  padding: 80px 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-box {
  background: var(--white);
  padding: 48px 52px;
  border-radius: 0;
  max-width: 680px;
  margin: auto;
  border: 1px solid var(--border);
}

.contact-box p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.contact-box a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-box a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   ANTET LICEU
   ═══════════════════════════════════════ */
.antet-liceu-wrap {
  position: relative;
  max-width: 680px;
  margin: 40px auto 0;
  padding: 32px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}

/* Gold corner ornaments */
.antet-liceu-corners { pointer-events: none; }

.antet-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--gold);
}
.antet-tl { top: 8px;    left: 8px;   border-right: none; border-bottom: none; }
.antet-tr { top: 8px;    right: 8px;  border-left:  none; border-bottom: none; }
.antet-bl { bottom: 8px; left: 8px;   border-right: none; border-top:    none; }
.antet-br { bottom: 8px; right: 8px;  border-left:  none; border-top:    none; }

.antet-liceu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.antet-eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
}

.antet-liceu-img {
  max-width: 100%;
  width: 520px;
  height: auto;
  display: block;
  filter: saturate(1.05);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   FOOTER — MEGA PREMIUM
   ═══════════════════════════════════════ */
.footer {
  background: #060110;
  border-top: 1px solid rgba(192,132,252,0.12);
  padding: 64px 52px 0;
  color: rgba(220,190,255,0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 52px;
}

/* Brand column */
.footer-brand {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img { width: 44px; height: auto; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 6px;
  color: var(--gold);
  font-weight: 500;
}
.footer-brand-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-top: 2px;
  text-transform: uppercase;
}
.footer-school-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,132,252,0.07);
  border: 1px solid rgba(192,132,252,0.15);
  padding: 7px 12px;
  margin-bottom: 16px;
  max-width: 240px;
}
.footer-school-badge img { width: 28px; height: auto; }
.footer-school-badge span {
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(220,190,255,0.55);
  line-height: 1.35;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: rgba(220,190,255,0.55);
  margin-bottom: 18px;
}
.footer-info {
  font-size: 13px;
  color: rgba(220,190,255,0.55);
  line-height: 1.9;
  margin-bottom: 24px;
}
.footer-info a { color: rgba(220,190,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-info a:hover { color: var(--gold-light); }

/* Social icons */
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(192,132,252,0.08);
  border: 1px solid rgba(192,132,252,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(220,190,255,0.6);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s;
}
.footer-social-btn:hover {
  background: rgba(192,132,252,0.18);
  color: var(--white);
  border-color: var(--purple-mid);
}

/* Link columns */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 15px;
  color: rgba(220,190,255,0.6);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.footer-links a:hover {
  color: rgba(220,190,255,0.9);
  padding-left: 6px;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(192,132,252,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(220,190,255,0.5);
  letter-spacing: 1px;
}
.footer-bottom a { color: rgba(220,190,255,0.4); text-decoration: none; }

/* ── AUTOCOMPLETE SEARCH ── */
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-wrap .search-input { width: 100%; box-sizing: border-box; }
.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1a0e2e;
  border: 1px solid rgba(192,132,252,0.2);
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
}
.autocomplete-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(192,132,252,0.07);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: rgba(192,132,252,0.1); }
.ac-name {
  font-size: 13px;
  color: rgba(220,190,255,0.85);
}
.ac-name mark {
  background: none;
  color: var(--gold-light);
  font-weight: 600;
}
.ac-price {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: 12px;
}

/* ── STOCK BADGE (card) ── */
.badge-stock {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(220,50,50,0.88);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  z-index: 3;
  pointer-events: none;
}

/* ── STOCK BADGE (modal) ── */
.modal-stock-badge {
  background: rgba(220,50,50,0.12);
  border: 1px solid rgba(220,50,50,0.35);
  color: rgba(255,140,140,0.9);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 14px;
  margin-bottom: 14px;
}

/* ── MODAL QUANTITY ── */
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.modal-qty-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(220,190,255,0.45);
}
.modal-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(192,132,252,0.18);
}
.qty-btn {
  width: 32px;
  height: 32px;
  background: rgba(192,132,252,0.06);
  border: none;
  color: rgba(220,190,255,0.7);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-btn:hover { background: rgba(201,164,58,0.15); color: var(--gold-light); }
.qty-val {
  min-width: 36px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  border-left: 1px solid rgba(192,132,252,0.12);
  border-right: 1px solid rgba(192,132,252,0.12);
  padding: 0 8px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── RELATED PRODUCTS IN MODAL ── */
.modal-related {
  border-top: 1px solid rgba(192,132,252,0.1);
  padding: 22px 28px 4px;
}
.modal-related-title {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(220,190,255,0.4);
  margin-bottom: 18px;
}
.modal-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.related-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.2s;
}
.related-item:hover { opacity: 0.75; }
.related-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.related-name {
  font-size: 11px;
  color: rgba(220,190,255,0.7);
  line-height: 1.3;
  display: block;
}
.related-price {
  font-size: 11px;
  color: var(--gold);
  display: block;
}

/* ── GUARANTEE STRIP ── */
.guarantee-strip {
  background: rgba(192,132,252,0.05);
  border-top: 1px solid rgba(192,132,252,0.12);
  border-bottom: 1px solid rgba(192,132,252,0.12);
  padding: 13px 0;
  position: relative;
  z-index: 2;
}
.guarantee-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.guarantee-item {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(220,190,255,0.8);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.gi-icon { color: var(--gold); font-size: 9px; }
.guarantee-sep { color: rgba(192,132,252,0.2); font-size: 16px; }

/* ── AWARD BADGES ── */
.award-badges-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 18px;
  background: rgba(201,164,58,0.05);
  border: 1px solid rgba(201,164,58,0.22);
  min-width: 120px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.award-badge:hover {
  background: rgba(201,164,58,0.1);
  border-color: rgba(201,164,58,0.45);
}
.award-badge-icon {
  font-size: 26px;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.award-badge-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.award-badge-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(220,190,255,0.5);
  text-transform: uppercase;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.faq-item {
  border: 1px solid rgba(192,132,252,0.14);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(192,132,252,0.35); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: rgba(192,132,252,0.04);
  transition: background 0.2s;
}
.faq-item.open .faq-question { background: rgba(192,132,252,0.09); }
.faq-question-text {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--white);
}
.faq-question-icon {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.35s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 13px;
  color: rgba(220,190,255,0.65);
  line-height: 1.85;
  border-left: 2px solid rgba(201,164,58,0.35);
  padding-left: 16px;
  margin: 0;
}

/* ── DELIVERY ZONE ── */
.delivery-zone {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 860px;
}
.delivery-zone-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.delivery-zone-text > p {
  font-size: 13px;
  color: rgba(220,190,255,0.65);
  line-height: 1.8;
}
.delivery-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.delivery-city {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(220,190,255,0.65);
  padding: 5px 12px;
  border: 1px solid rgba(192,132,252,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.delivery-city:hover {
  border-color: rgba(201,164,58,0.4);
  color: var(--gold-light);
}
.delivery-map-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border: 1px solid rgba(192,132,252,0.15);
  background: rgba(192,132,252,0.04);
  position: relative;
  overflow: hidden;
}
.delivery-map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,164,58,0.08) 0%, transparent 70%);
}
.delivery-map-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(220,190,255,0.4);
  text-align: center;
  line-height: 2.2;
  position: relative;
  z-index: 1;
}
.delivery-map-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 8px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

/* ── TEXT REVEAL ON SCROLL ── */
.section h2 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 2px;
}
.section h2 .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.section h2.tr-visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ── FLOATING BUTTONS (WhatsApp + Asistent) ── */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 480;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1db954;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px 10px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(29,185,84,0.4);
  transition: all 0.25s;
}
.float-whatsapp-btn:hover { background: #17a349; box-shadow: 0 6px 28px rgba(29,185,84,0.55); }
.float-whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.float-whatsapp-info { display: flex; flex-direction: column; line-height: 1.3; }
.float-whatsapp-info strong { font-size: 13px; }
.float-whatsapp-info span { font-size: 10px; opacity: 0.8; }

.float-asistent-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,7,28,0.97);
  border: 1px solid rgba(192,132,252,0.3);
  color: rgba(220,190,255,0.85);
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.float-asistent-btn:hover { border-color: var(--purple-mid); color: var(--white); }
.float-asistent-icon { font-size: 16px; }

/* ═══════════════════════════════════════════════════
   JOSEPHINE AI CHAT WIDGET
   ═══════════════════════════════════════════════════ */

.jchat-trigger-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: #e05;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  margin-left: 4px;
  vertical-align: super;
  animation: badgePulse 1.8s ease infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

.josephine-chat {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 370px;
  max-width: calc(100vw - 32px);
  max-height: 560px;
  background: rgba(10, 4, 24, 0.98);
  border: 1px solid rgba(201,164,58,0.28);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,164,58,0.06);
  display: flex;
  flex-direction: column;
  z-index: 88888;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  backdrop-filter: blur(20px);
}
.josephine-chat.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.jchat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(201,164,58,0.16);
  background: linear-gradient(135deg, rgba(201,164,58,0.08), rgba(168,85,247,0.08));
  flex-shrink: 0;
}
.jchat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c87fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #0A0515; font-weight: 700;
  flex-shrink: 0;
}
.jchat-header-info { flex: 1; }
.jchat-name {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold-light);
}
.jchat-status {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(220,190,255,0.5);
  letter-spacing: 0.5px;
}
.jchat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.jchat-close {
  background: none; border: none;
  color: rgba(220,190,255,0.4);
  font-size: 22px; cursor: pointer; line-height: 1;
  padding: 4px 6px;
  transition: color 0.2s;
}
.jchat-close:hover { color: var(--white); }

/* Messages area */
.jchat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.jchat-messages::-webkit-scrollbar { width: 3px; }
.jchat-messages::-webkit-scrollbar-track { background: transparent; }
.jchat-messages::-webkit-scrollbar-thumb { background: rgba(201,164,58,0.3); border-radius: 2px; }

.jchat-msg { display: flex; gap: 8px; }
.jchat-bot { justify-content: flex-start; }
.jchat-user { justify-content: flex-end; }

.jchat-bubble {
  max-width: 84%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}
.jchat-bot .jchat-bubble {
  background: rgba(192,132,252,0.1);
  border: 1px solid rgba(192,132,252,0.18);
  color: var(--charcoal);
  border-radius: 0 12px 12px 12px;
}
.jchat-bot .jchat-bubble strong { color: var(--gold-light); }
.jchat-user .jchat-bubble {
  background: linear-gradient(135deg, rgba(201,164,58,0.22), rgba(168,85,247,0.15));
  border: 1px solid rgba(201,164,58,0.25);
  color: var(--white);
  border-radius: 12px 0 12px 12px;
}

/* Typing indicator */
.jchat-typing .jchat-bubble {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 18px;
}
.jchat-typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: typingBounce 1.2s ease infinite;
}
.jchat-typing-dot:nth-child(2) { animation-delay: 0.18s; }
.jchat-typing-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce {
  0%,100% { transform: translateY(0);   opacity: 0.4; }
  50%      { transform: translateY(-5px); opacity: 1; }
}

/* Suggestions */
.jchat-suggestions {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding-top: 4px;
}
.jchat-sug {
  background: rgba(201,164,58,0.08);
  border: 1px solid rgba(201,164,58,0.22);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.2s;
  white-space: nowrap;
}
.jchat-sug:hover {
  background: rgba(201,164,58,0.18);
  border-color: var(--gold);
  color: var(--white);
}

/* Input */
.jchat-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(201,164,58,0.14);
  padding: 12px 14px;
  flex-shrink: 0;
}
.jchat-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,132,252,0.2);
  border-right: none;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
.jchat-input::placeholder { color: rgba(220,190,255,0.3); }
.jchat-input:focus { border-color: rgba(201,164,58,0.4); }
.jchat-send {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: #0A0515;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.jchat-send:hover { opacity: 0.85; }
.jchat-send:disabled { opacity: 0.4; cursor: not-allowed; }

/* Footer */
.jchat-footer {
  text-align: center;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(220,190,255,0.22);
  padding: 6px 0 10px;
  flex-shrink: 0;
}

/* Light mode */
body.light-mode .josephine-chat {
  background: rgba(250,248,255,0.99);
  border-color: rgba(120,55,200,0.22);
}
body.light-mode .jchat-bot .jchat-bubble {
  background: rgba(120,55,200,0.07);
  border-color: rgba(120,55,200,0.14);
  color: #16003A;
}
body.light-mode .jchat-user .jchat-bubble { color: #0a0020; }
body.light-mode .jchat-input { background: #fff; color: #16003A; border-color: rgba(120,55,200,0.22); }
body.light-mode .jchat-input::placeholder { color: rgba(40,5,80,0.3); }
body.light-mode .jchat-footer { color: rgba(40,5,80,0.25); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 40px; }
  .footer { padding: 48px 24px 0; }
  .floating-buttons { bottom: 88px; right: 16px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .float-whatsapp-btn .float-whatsapp-info { display: none; }
  .float-whatsapp-btn { padding: 12px; border-radius: 50%; }
}

/* ═══════════════════════════════════════
   NOTIFICATION
   ═══════════════════════════════════════ */
.site-notification {
  position: fixed;
  top: 28px;
  right: 28px;
  background: var(--black);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  border-left: 2px solid var(--gold);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
}

.site-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,11,46,0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1200;
}

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

.cart-drawer {
  position: fixed;
  top: 0; right: -460px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 60px rgba(22,11,46,0.18);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transition: right 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 26px 24px;
  border-bottom: 1px solid var(--border-dark);
  background: var(--purple-deep);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white);
}

.cart-header-count {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-left: 8px;
  opacity: 0.8;
}

.cart-close {
  background: none;
  border: none;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.cart-close:hover { color: var(--white); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  background: var(--cream);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: var(--stone);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
}

.cart-empty::before {
  content: '♦';
  font-size: 28px;
  color: var(--border);
  font-style: normal;
}

/* Cart item — now with image */
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  padding: 14px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}

.cart-item:hover {
  box-shadow: 0 4px 16px rgba(22,11,46,0.06);
}

.cart-item-img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  display: block;
  background: var(--cream);
}

.cart-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.cart-item-info h4 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.cart-item-info p {
  color: var(--gold);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item-actions button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: all 0.2s;
  border-radius: 0;
}

.cart-item-actions button:hover {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

.cart-item-actions span {
  width: 34px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove button {
  border: none;
  background: none;
  color: rgba(160,60,60,0.6);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.2s;
}

.cart-item-remove button:hover { color: rgba(200,40,40,0.9); }

.cart-footer {
  padding: 18px 22px 24px;
  border-top: 1px solid var(--border-dark);
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-dark);
}

.cart-total span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
}

.cart-total strong {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}

.cart-buttons { display: flex; flex-direction: column; gap: 8px; }

.cart-checkout,
.cart-wa-ask,
.cart-clear,
.cart-whatsapp {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 15px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.cart-checkout {
  background: var(--purple-deep);
  color: var(--white);
  border: 1px solid var(--purple-deep);
}
.cart-checkout:hover {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 8px 24px rgba(109,40,217,0.28);
}

.cart-wa-ask {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
}
.cart-wa-ask:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.cart-clear {
  background: transparent;
  color: var(--stone);
  border: 1px solid transparent;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 10px;
}
.cart-clear:hover {
  color: rgba(180,40,40,0.7);
  border-color: rgba(180,40,40,0.2);
}

.cart-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
}
.cart-whatsapp:hover { background: #1ebe5a; }

/* ═══════════════════════════════════════
   PRODUCT MODAL
   ═══════════════════════════════════════ */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  z-index: 1400;
}

.product-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  width: min(1020px, 94vw);
  max-height: 92vh;
  overflow: auto;
  transform: translate(-50%, -52%) scale(0.96);
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 48px 120px rgba(0,0,0,0.32);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--stone);
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}

.product-modal-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.product-modal-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.product-modal-image-wrap {
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.product-modal-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-modal.open .product-modal-image-wrap img {
  transform: scale(1.0);
}

.product-modal-info {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.product-modal-category {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-modal-category::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.product-modal-info h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.product-modal-info > p {
  font-family: var(--font-body);
  color: var(--stone);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.75;
}

.product-modal-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin: 28px 0 32px;
  letter-spacing: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.product-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  border: none;
  padding: 15px 28px;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.primary-btn {
  background: var(--black);
  color: var(--white);
}

.primary-btn:hover { background: var(--gold); }

.secondary-btn {
  background: #25D366;
  color: var(--white);
}

.secondary-btn:hover { background: #1ebe5a; }

/* ═══════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════ */

/* ── PROGRESS BAR ── */
.checkout-progress {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 0 24px;
  position: relative;
}
.cp-track {
  position: absolute;
  top: 18px;
  left: calc(24px + 60px);
  right: calc(24px + 60px);
  height: 1px;
  background: rgba(192,132,252,0.15);
  z-index: 0;
}
.cp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
}
.cp-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}
.cp-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(192,132,252,0.2);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.cp-dot span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(220,190,255,0.35);
  font-weight: 500;
  transition: color 0.3s;
}
.cp-step.active .cp-dot {
  border-color: var(--gold);
  background: rgba(201,164,58,0.1);
  box-shadow: 0 0 14px rgba(201,164,58,0.25);
}
.cp-step.active .cp-dot span { color: var(--gold); }
.cp-step.done .cp-dot {
  border-color: var(--gold);
  background: var(--gold);
}
.cp-step.done .cp-dot span {
  color: var(--black);
  font-weight: 700;
}
.cp-step.done .cp-dot::before {
  content: '✓';
  font-size: 14px;
  color: var(--black);
  font-weight: 700;
}
.cp-step.done .cp-dot span { display: none; }
.cp-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(220,190,255,0.35);
  transition: color 0.3s;
  white-space: nowrap;
}
.cp-step.active .cp-label,
.cp-step.done .cp-label { color: rgba(220,190,255,0.75); }

/* ── FORM STEPS ── */
.form-step.hidden { display: none; }
@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-step.step-enter { animation: stepSlideIn 0.35s ease forwards; }

.step-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.step-next-btn {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}
.step-next-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.step-back-btn {
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(192,132,252,0.2);
  color: rgba(220,190,255,0.5);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.step-back-btn:hover { border-color: rgba(192,132,252,0.5); color: rgba(220,190,255,0.85); }

/* Input error highlight */
.form-input.input-error {
  border-color: rgba(255,80,80,0.6) !important;
  box-shadow: 0 0 0 2px rgba(255,80,80,0.12);
}

/* Step 3 review */
.step3-review {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(192,132,252,0.04);
  border: 1px solid rgba(192,132,252,0.12);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.review-block-full { grid-column: 1 / -1; }
.review-label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.review-val {
  display: block;
  font-size: 13px;
  color: rgba(220,190,255,0.8);
}

.checkout-back-link {
  text-decoration: none;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.checkout-back-link:hover { color: var(--gold); }

.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.checkout-hero {
  margin-bottom: 52px;
}

.checkout-heading {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.checkout-subtext {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  max-width: 520px;
  line-height: 1.75;
}

/* Two-column layout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.checkout-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-col-title::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── FORM ── */
.order-form { display: flex; flex-direction: column; gap: 20px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}
.req { color: var(--gold); font-style: normal; }

.form-input {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.form-input::placeholder { color: rgba(146,128,174,0.5); }
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.07);
}
.form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(200,60,60,0.5);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.form-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.3px;
  line-height: 1.6;
  padding-top: 4px;
}

/* Action buttons */
.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.checkout-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--purple-deep);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  width: 100%;
}
.checkout-btn-primary:hover {
  background: var(--purple);
  box-shadow: 0 12px 40px rgba(109,40,217,0.3);
  transform: translateY(-2px);
}
.checkout-btn-primary:disabled {
  background: var(--stone);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 0;
  width: 100%;
}
.checkout-btn-whatsapp:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-icon { font-style: normal; font-size: 13px; }

/* ── ORDER SUMMARY ── */
.checkout-summary-col {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 26px;
  position: sticky;
  top: 100px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 380px;
  overflow-y: auto;
  margin-bottom: 4px;
}

.summary-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
}
.summary-item:last-child { border-bottom: none; }

.summary-item-img {
  width: 56px;
  height: 70px;
  object-fit: cover;
  display: block;
  background: var(--cream);
}

.summary-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summary-item-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}
.summary-item-qty {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.5px;
}
.summary-item-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0 16px;
}
.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.summary-total-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
}
.summary-total-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.summary-delivery-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.summary-security {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.5px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}
.security-dot { color: var(--gold); font-size: 8px; }

.summary-empty-state {
  text-align: center;
  padding: 32px 0;
}
.summary-empty-state p {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--stone);
  font-size: 18px;
  margin-bottom: 12px;
}
.summary-back-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

/* ── CONFIRM OVERLAY ── */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,11,46,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.confirm-overlay.show {
  opacity: 1;
  visibility: visible;
}
.confirm-box {
  background: var(--white);
  padding: 60px 52px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--border);
}
.confirm-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.confirm-box h3 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}
.confirm-box p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 28px;
}
.confirm-box button {
  background: var(--purple-deep);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  border-radius: 0;
}
.confirm-box button:hover { background: var(--purple); }

/* Checkout responsive */
@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary-col { position: static; order: -1; }
  .checkout-heading { font-size: 38px; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .checkout-page { padding: 40px 20px 80px; }
}
@media (max-width: 480px) {
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .checkout-heading { font-size: 30px; }
}

/* ═══════════════════════════════════════
   OFFERS SECTION
   ═══════════════════════════════════════ */
.section-offers {
  background: linear-gradient(180deg, rgba(168,85,247,0.07) 0%, rgba(10,5,21,0) 100%);
  border-top: 1px solid rgba(192,132,252,0.1);
  border-bottom: 1px solid rgba(192,132,252,0.1);
}

.section-offers h2 {
  color: var(--white);
}

.section-offers h2::after {
  background: var(--gold);
}

.section-offers .catalog-text {
  color: rgba(255,255,255,0.5);
}

.offer-card {
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 12px;
  z-index: 2;
  pointer-events: none;
}

.offer-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 14px;
}

.offer-price-original {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  text-decoration: line-through;
  letter-spacing: 0.5px;
}

.offer-price-new {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.8px;
}

/* On dark background, cards need light text info */
.section-offers .product-card h3 {
  color: var(--white);
}

.section-offers .product-card p {
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════
   ORG CHART
   ═══════════════════════════════════════ */
.org-chart-outer {
  overflow-x: auto;
  margin-top: 48px;
  padding-bottom: 12px;
}

.org-chart {
  min-width: 820px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 12px;
}

/* ROOT TIER */
.oc-root-tier {
  display: flex;
  justify-content: center;
  position: relative;
}

.oc-root-tier::after {
  content: '';
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: var(--gold);
}

/* TIER 2 WRAP + horizontal connector */
.oc-l2-wrap {
  margin-top: 36px;
  position: relative;
}

.oc-l2-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: var(--gold);
}

/* TIER 2 GRID */
.oc-l2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.oc-dept {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 5px 0;
  position: relative;
}

/* Vertical line from horizontal down to each dept box */
.oc-dept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: var(--gold);
}

/* Connector from dept to sub-items */
.oc-sub-connector {
  width: 1px;
  height: 20px;
  background: var(--gold);
  margin: 0 auto;
}

/* TIER 3 */
.oc-l3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.oc-l3::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% / 4);
  right: calc(100% / 4);
  height: 1px;
  background: var(--gold);
}

.oc-subdept {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 4px 0;
  position: relative;
}

.oc-subdept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: var(--gold);
}

/* NODE BOXES */
.oc-node {
  border: 1px solid var(--gold);
  padding: 12px 10px;
  text-align: center;
  background: var(--white);
  width: 100%;
  box-sizing: border-box;
  transition: background 0.25s, box-shadow 0.25s;
}

.oc-node:hover {
  background: var(--purple-pale);
  box-shadow: 0 8px 24px rgba(109,40,217,0.12);
}

.oc-role {
  display: block;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.oc-name {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--charcoal);
}

/* Root node is special */
.oc-node-root {
  background: var(--purple-deep);
  border-color: var(--gold);
  padding: 18px 40px;
  min-width: 220px;
}

.oc-node-root:hover {
  background: var(--purple-dark);
  box-shadow: 0 12px 40px rgba(22,11,46,0.3);
}

.oc-node-root .oc-role {
  font-size: 10px;
  letter-spacing: 2.5px;
}

.oc-node-root .oc-name {
  font-size: 13px;
  color: var(--white);
  letter-spacing: 1.5px;
}

.oc-node-sm {
  padding: 10px 8px;
}

.oc-node-sm .oc-role {
  font-size: 7px;
  letter-spacing: 1.2px;
}

.oc-node-sm .oc-name {
  font-size: 9px;
}

/* Organigramă placeholder (before org chart added) */
.organigrama-placeholder {
  text-align: center;
  padding: 80px 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
}

/* ═══════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 301;
  margin-left: 12px;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.32s ease, opacity 0.25s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.8px, 4.8px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.8px, -4.8px); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(6,1,16,0.98);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 6px;
  color: rgba(220,190,255,0.8);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  animation: none;
}
.mobile-nav-overlay.open a {
  animation: mobileNavIn 0.5s ease both;
}
.mobile-nav-overlay.open a:nth-child(1)  { animation-delay: 0.05s; }
.mobile-nav-overlay.open a:nth-child(2)  { animation-delay: 0.10s; }
.mobile-nav-overlay.open a:nth-child(3)  { animation-delay: 0.15s; }
.mobile-nav-overlay.open a:nth-child(4)  { animation-delay: 0.20s; }
.mobile-nav-overlay.open a:nth-child(5)  { animation-delay: 0.25s; }
.mobile-nav-overlay.open a:nth-child(6)  { animation-delay: 0.30s; }
.mobile-nav-overlay.open a:nth-child(7)  { animation-delay: 0.35s; }
.mobile-nav-overlay.open a:nth-child(8)  { animation-delay: 0.40s; }
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-overlay a:hover { color: var(--gold); }
.mobile-nav-gem {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(192,132,252,0.25);
}

/* ═══════════════════════════════════════
   CUM FUNCȚIONEAZĂ
   ═══════════════════════════════════════ */
.how-it-works-section { background: transparent; }
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 52px auto 0;
  position: relative;
}
.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(16.5% + 26px);
  width: calc(67% - 52px);
  height: 1px;
  background: linear-gradient(90deg, rgba(192,132,252,0.2), rgba(201,164,58,0.35), rgba(192,132,252,0.2));
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 0;
}
.how-step-circle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(192,132,252,0.3);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  background: var(--purple-deep);
  transition: background 0.3s, border-color 0.3s;
}
.how-step:hover .how-step-circle {
  background: rgba(192,132,252,0.1);
  border-color: var(--purple-mid);
}
.how-step-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}
.how-step h4 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.how-step p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
}
@media (max-width: 700px) {
  .how-it-works-grid { grid-template-columns: 1fr; max-width: 340px; gap: 40px; }
  .how-it-works-grid::before { display: none; }
}

/* ═══════════════════════════════════════
   COUNTDOWN TIMER
   ═══════════════════════════════════════ */
.offer-countdown {
  text-align: center;
  margin: 10px 0 44px;
}
.countdown-label {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.countdown-display {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px 12px;
  background: rgba(192,132,252,0.07);
  border: 1px solid rgba(192,132,252,0.16);
  min-width: 76px;
}
.countdown-unit + .countdown-unit { border-left: none; }
.countdown-number {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
  min-width: 2ch;
  display: inline-block;
  text-align: center;
}
.countdown-text {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 7px;
}
.countdown-sep {
  font-size: 22px;
  color: rgba(192,132,252,0.35);
  padding: 0 2px;
  margin-bottom: 18px;
  align-self: center;
}

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 34px;
  right: 34px;
  z-index: 490;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
  box-shadow: 0 4px 20px rgba(201,164,58,0.35);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201,164,58,0.5);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-video-content h2 { font-size: 62px; }
  .hero-video-text { font-size: 15px; }
  .header { padding: 20px 32px; }
}

@media (max-width: 900px) {
  .overlay-header {
    top: 0;
    background: rgba(245,240,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .premium-menu a { color: var(--charcoal); }
  .header-actions .cart-toggle { color: var(--charcoal); border-color: var(--border); }

  .header {
    flex-direction: row;
    gap: 0;
    padding: 16px 20px;
    justify-content: space-between;
    align-items: center;
  }
  .premium-menu { display: none; }
  .hamburger-btn { display: flex; }

  .hero-video-section { min-height: 80vh; }
  .hero-video-content { margin-top: 0; text-align: center; }
  .hero-video-content h2 { font-size: 42px; max-width: 100%; }
  .hero-mini-label { justify-content: center; }
  .hero-video-text { margin-left: auto; margin-right: auto; font-size: 14px; }
  .hero-video-buttons { justify-content: center; }

  .section { padding: 72px 24px; }
  .section h2 { font-size: 38px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .cart-drawer { width: 100%; }

  .product-modal-content { grid-template-columns: 1fr; }
  .product-modal-image-wrap img { min-height: 280px; height: 280px; }
  .product-modal-info { padding: 32px 28px; }

  .despre-grid { grid-template-columns: 1fr; gap: 32px; }
  .despre-quote { padding: 32px; }

  .filters-bar { flex-direction: column; align-items: center; }
  .search-input, .price-filter { width: 100%; max-width: 360px; }

  .menu-dropdown { width: 100%; text-align: center; }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none; border: none;
    background: transparent;
    padding: 4px 0 0; min-width: auto;
    left: auto;
  }
  .dropdown-menu a { padding: 6px 10px; }
  .premium-menu { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-video-content h2 { font-size: 30px; }
  .hero-mini-label { font-size: 9px; }
  .hero-video-text { font-size: 13px; }
  .premium-menu { gap: 12px; justify-content: center; }
  .premium-menu a { font-size: 10px; }
  .product-grid { grid-template-columns: 1fr; }
  .top-bar { font-size: 9px; padding: 8px; letter-spacing: 2px; }
  .product-modal { padding: 0; }
  .section h2 { font-size: 30px; }
  .contact-box { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════
   SKELETON LOADING
   ═══════════════════════════════════════════════ */

@keyframes shimmer {
  0%   { background-position: -700px 0; }
  100% { background-position:  700px 0; }
}

.skeleton-card {
  pointer-events: none;
  opacity: 1 !important;
  transform: none !important;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  margin-bottom: 14px;
}

.skeleton-line {
  height: 11px;
  border-radius: 4px;
  margin-bottom: 9px;
}

.skeleton-line.w70 { width: 70%; }
.skeleton-line.w50 { width: 50%; }
.skeleton-line.w40 { width: 40%; }

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(109,40,217,0.07) 0%,
    rgba(200,160,255,0.22) 40%,
    rgba(109,40,217,0.07) 80%
  );
  background-size: 700px 100%;
  animation: shimmer 1.6s infinite linear;
}

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #c87fff, var(--purple));
  z-index: 99999;
  transition: width 0.08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════════
   CUSTOM DIAMOND CURSOR
   ═══════════════════════════════════════════════ */

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.cursor-gem {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  width: 13px;
  height: 13px;
  background: linear-gradient(135deg, var(--gold-light), #c87fff);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease;
  will-change: left, top;
  border-radius: 1px;
}

.cursor-gem.on-hover {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #c87fff, var(--purple));
}

.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 999998;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  transition: left 0.08s ease, top 0.08s ease;
  will-change: left, top;
}

/* ═══════════════════════════════════════════════
   NEWSLETTER POPUP
   ═══════════════════════════════════════════════ */

.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 25, 0.72);
  backdrop-filter: blur(6px);
  z-index: 88888;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.newsletter-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.newsletter-box {
  background: var(--purple-deep);
  border: 1px solid rgba(200,160,255,0.25);
  border-radius: 4px;
  padding: 52px 48px 44px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s ease;
}

.newsletter-overlay.show .newsletter-box {
  transform: translateY(0) scale(1);
}

.newsletter-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(200,160,255,0.5);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.newsletter-close:hover { color: var(--gold-light); }

.newsletter-gem {
  font-size: 28px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold-light), #c87fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: #e8d5ff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.newsletter-box p {
  font-size: 13px;
  color: rgba(200,160,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter-input-row {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,160,255,0.25);
  border-right: none;
  border-radius: 2px 0 0 2px;
  color: #e8d5ff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(200,160,255,0.35); }
.newsletter-input:focus { border-color: rgba(200,160,255,0.5); }

.newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 0 2px 2px 0;
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter-btn:hover { opacity: 0.88; }

.newsletter-skip {
  font-size: 11px;
  color: rgba(200,160,255,0.4);
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  display: inline-block;
  margin-top: 4px;
}
.newsletter-skip:hover { color: rgba(200,160,255,0.7); }

/* ═══════════════════════════════════════════════
   LIVE VIEWERS BADGE
   ═══════════════════════════════════════════════ */

.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(200,160,255,0.75);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c87fff;
  animation: livePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ═══════════════════════════════════════════════
   FLY-TO-CART ANIMATION
   ═══════════════════════════════════════════════ */

.fly-gem {
  position: fixed;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-light), #c87fff);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 99990;
  transition:
    left   0.62s cubic-bezier(0.22, 1, 0.36, 1),
    top    0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    transform 0.62s ease;
}

@keyframes cartBounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.35); }
  65%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-toggle.bouncing {
  animation: cartBounce 0.45s ease;
}

/* ═══════════════════════════════════════════════
   CHECKOUT — GIFT WRAP + PROMO
   ═══════════════════════════════════════════════ */

.gift-wrap-group {
  margin-top: 4px;
}

.gift-wrap-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 18px;
  border: 1px solid rgba(200,160,255,0.2);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.gift-wrap-label:hover {
  border-color: rgba(200,160,255,0.4);
  background: rgba(200,160,255,0.04);
}

.gift-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--purple-mid);
  cursor: pointer;
  flex-shrink: 0;
}

.gift-label-text {
  font-size: 14px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gift-price {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

.promo-group {
  margin-top: 8px;
}

.promo-row {
  display: flex;
  gap: 0;
}

.promo-input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color 0.2s;
}
.promo-input:focus { border-color: var(--purple-mid); }
.promo-input::placeholder { text-transform: none; letter-spacing: 0; color: #aaa; }

.promo-apply-btn {
  padding: 11px 20px;
  background: var(--purple-deep);
  border: 1px solid var(--purple-deep);
  border-radius: 0 4px 4px 0;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-apply-btn:hover { background: var(--purple-dark); }

.promo-msg {
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
  letter-spacing: 0.3px;
}
.promo-success { color: #5cb85c; }
.promo-error   { color: #e05; }

/* ═══════════════════════════════════════════════════════
   DARK LUXURY — surface & text overrides
   (needed where colors were hardcoded for light theme)
   ═══════════════════════════════════════════════════════ */

/* ── Section headings — FIXED (were var(--black) = invisible) ── */
.section h2 {
  color: var(--white);
  text-shadow: 0 0 40px rgba(192,132,252,0.18);
}
.section h2::after {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  width: 64px;
  height: 1px;
}

/* ── Catalog text visible ── */
.catalog-text { color: rgba(220,190,255,0.58); }

/* ── Section subtle background alternation ── */
#produse,
#testimoniale,
#echipa { background: rgba(192,132,252,0.03); }

#oferte,
#cum-functioneaza,
#contact { background: transparent; }

#despre {
  background: linear-gradient(180deg, rgba(192,132,252,0.04) 0%, transparent 100%);
}

/* ── Product card text ── */
.product-card p { color: rgba(220,190,255,0.55); }
.product-card h3 { color: var(--white); }

/* Product card titles were var(--black) — now near-black on dark bg → fix */
.product-card h3 { color: var(--white); }

/* Secondary card button */
.secondary-card-btn {
  border-color: rgba(192,132,252,0.22);
  color: rgba(220,190,255,0.78);
}
.secondary-card-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Filters */
.search-input,
.price-filter {
  background: rgba(192,132,252,0.08);
  color: var(--white);
  border-color: rgba(192,132,252,0.2);
}
.search-input::placeholder { color: rgba(220,190,255,0.38); }
.price-filter option {
  background: #130A28;
  color: var(--white);
}

/* Catalog */
.catalog-frame {
  background: rgba(192,132,252,0.05);
  border-color: rgba(192,132,252,0.18);
}
.catalog-arrow {
  background: rgba(192,132,252,0.08);
  color: var(--white);
  border-color: rgba(192,132,252,0.2);
}
.catalog-arrow:hover {
  background: var(--gold);
  color: var(--purple-deep);
  border-color: var(--gold);
}
.catalog-counter { color: var(--stone); }
.catalog-text    { color: var(--stone); }

/* About section */
.despre-lead   { color: var(--white); }
.despre-text p { color: var(--stone); }

/* Contact */
.contact-box {
  background: rgba(192,132,252,0.06);
  border-color: rgba(192,132,252,0.18);
}
.contact-box p   { color: var(--stone); }
.contact-box a   { color: var(--gold-light); }

/* Organigrama */
.organigrama-wrap {
  background: rgba(192,132,252,0.05);
  border-color: rgba(192,132,252,0.15);
}

/* Form inputs (comanda.html) */
.form-input {
  background: rgba(192,132,252,0.08);
  color: var(--white);
  border-color: rgba(192,132,252,0.2);
}
.form-input::placeholder { color: rgba(220,190,255,0.35); }
.form-input:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(192,132,252,0.1);
}
.form-label  { color: rgba(220,190,255,0.82); }
.form-note   { color: var(--stone); }

/* Checkout headings */
.checkout-heading   { color: var(--white); }
.checkout-subtext   { color: var(--stone); }
.checkout-col-title { color: var(--white); }

/* Checkout summary */
.summary-item-name  { color: var(--white); }
.summary-item-qty,
.summary-item-price { color: var(--stone); }
.summary-total-label{ color: var(--stone); }
.summary-total-val  { color: var(--gold-light); }
.summary-divider    { background: rgba(192,132,252,0.18); }
.summary-delivery-note { color: var(--stone); }
.summary-security   { color: var(--stone); }
.summary-empty      { color: var(--stone); }

/* Cart items */
.cart-item-info h4 { color: var(--white); }
.cart-item-info p  { color: var(--stone); }

/* Product modal */
.product-modal {
  background: #0F0820;
  border-left: 1px solid rgba(192,132,252,0.18);
}
.product-modal-category { color: var(--stone); }
#productModalTitle      { color: var(--white); }
#productModalDescription{ color: var(--stone); }

/* Org chart nodes */
.oc-node {
  background: rgba(192,132,252,0.08);
  border-color: rgba(192,132,252,0.25);
}
.oc-node-root {
  background: linear-gradient(135deg, rgba(168,85,247,0.35), rgba(192,132,252,0.25));
  border-color: var(--purple-mid);
}
.oc-role { color: var(--stone); }
.oc-name { color: var(--white); }

/* Gift wrap label */
.gift-wrap-label { border-color: rgba(192,132,252,0.2); }
.gift-label-text { color: var(--white); }

/* Promo */
.promo-input {
  background: rgba(192,132,252,0.08);
  color: var(--white);
  border-color: rgba(192,132,252,0.2);
}
.promo-input::placeholder { color: rgba(220,190,255,0.35); }
.promo-apply-btn { background: rgba(192,132,252,0.15); border-color: rgba(192,132,252,0.3); }
.promo-apply-btn:hover { background: rgba(192,132,252,0.28); }

/* Antet liceu */
.antet-liceu-wrap {
  border-color: rgba(192,132,252,0.2);
  background: rgba(192,132,252,0.04);
}
.antet-eyebrow { color: var(--stone); }

/* Product modal — dark surface */
.product-modal          { background: #0F0820; }
.product-modal-info h3  { color: var(--white); }
.product-modal-close:hover { color: var(--white); }

/* Cart footer — dark surface */
.cart-footer {
  background: rgba(10, 5, 21, 0.98);
  border-top-color: rgba(192,132,252,0.15);
}
.cart-total span { color: var(--stone); }
.cart-total strong { color: var(--gold-light); }

/* Cart body */
.cart-body { background: var(--purple-deep); }
.cart-empty { color: var(--stone); }

/* Top bar — slightly more visible */
.top-bar {
  background: #060210;
  color: rgba(220,190,255,0.55);
  border-bottom: 1px solid rgba(192,132,252,0.1);
}

/* Section offers — richer contrast on dark site */
.section-offers {
  background: linear-gradient(180deg, #060210 0%, #0A0515 100%);
}

/* Dropdown menu — dark glass */
.dropdown-menu {
  background: rgba(13, 7, 28, 0.97);
  border-color: rgba(192,132,252,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.dropdown-menu a { color: rgba(220,190,255,0.82); }
.dropdown-menu a:hover { color: var(--gold-light); background: rgba(192,132,252,0.1); }

/* Hero CTA button — gold on dark */
.hero-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
}
.hero-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Cart item cards */
.cart-item {
  background: rgba(192,132,252,0.07);
  border-color: rgba(192,132,252,0.15);
}
.cart-item-actions button { color: rgba(220,190,255,0.7); border-color: rgba(192,132,252,0.2); }
.cart-item-actions button:hover { color: var(--white); border-color: var(--purple-mid); }
.cart-item-remove button { color: rgba(220,190,255,0.4); }

/* Cart drawer */
.cart-drawer { background: #0C0720; }

/* Checkout summary column */
.checkout-summary-col {
  background: rgba(192,132,252,0.06);
  border-color: rgba(192,132,252,0.18);
}

/* Confirm overlay box */
.confirm-box {
  background: #0F0820;
  border: 1px solid rgba(192,132,252,0.25);
}
.confirm-box h3,
.confirm-box p { color: var(--white); }
.confirm-box p { color: var(--stone); }
.confirm-box button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
  border: none;
}

/* ═══════════════════════════════════════
   WISHLIST BUTTON
   ═══════════════════════════════════════ */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  background: rgba(10,5,21,0.72);
  border: 1px solid rgba(192,132,252,0.22);
  color: rgba(220,190,255,0.55);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  border-radius: 0;
}
.wishlist-btn:hover { color: #e05577; border-color: rgba(224,85,119,0.45); background: rgba(224,85,119,0.14); }
.wishlist-btn.active { color: #e05577; border-color: rgba(224,85,119,0.45); background: rgba(224,85,119,0.12); }

/* ═══════════════════════════════════════
   SORT DROPDOWN
   ═══════════════════════════════════════ */
.sort-filter {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 0;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  outline: none;
  transition: border-color 0.3s;
  cursor: pointer;
}
.sort-filter:focus { border-color: var(--gold); }

/* ═══════════════════════════════════════
   RECENTLY VIEWED
   ═══════════════════════════════════════ */
.recently-viewed-section { padding-top: 0; }
.recently-viewed-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════
   SHARE + SIZE GUIDE BUTTONS (modal)
   ═══════════════════════════════════════ */
.share-btn {
  background: transparent;
  border: 1px solid rgba(192,132,252,0.28);
  color: rgba(220,190,255,0.7);
  padding: 15px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.share-btn:hover { border-color: var(--purple-mid); color: var(--white); background: rgba(192,132,252,0.1); }

.size-guide-btn {
  background: transparent;
  border: none;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  margin-top: 6px;
  display: none;
}
.size-guide-btn:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   RING SIZE GUIDE OVERLAY
   ═══════════════════════════════════════ */
.size-guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(4,0,12,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.size-guide-overlay.show { opacity: 1; visibility: visible; }

.size-guide-box {
  background: #0F0820;
  border: 1px solid rgba(192,132,252,0.25);
  padding: 44px 48px;
  max-width: 520px;
  width: 90%;
  position: relative;
  animation: lightboxIn 0.32s ease;
}
.size-guide-box h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.size-guide-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  color: rgba(220,190,255,0.5);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
}
.size-guide-close:hover { color: var(--white); }

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 13px;
}
.size-guide-table th {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  padding: 10px 14px;
  border-bottom: 1px solid rgba(192,132,252,0.18);
  text-align: center;
}
.size-guide-table td {
  color: rgba(220,190,255,0.85);
  padding: 9px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(192,132,252,0.07);
}
.size-guide-table tr:hover td { background: rgba(192,132,252,0.05); }
.size-guide-note {
  font-size: 11px;
  color: var(--stone);
  text-align: center;
  margin-top: 18px;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   STATS / ANIMATED COUNTERS
   ═══════════════════════════════════════ */
.stats-section {
  background: linear-gradient(180deg, rgba(10,5,21,0) 0%, rgba(168,85,247,0.06) 50%, rgba(10,5,21,0) 100%);
  padding: 80px 52px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; height: 50%;
  width: 1px;
  background: rgba(192,132,252,0.18);
}
.stat-counter {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 16px rgba(201,164,58,0.35));
}
.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section { padding: 60px 20px; }
}

/* Dark overrides for new elements */
.sort-filter {
  background: rgba(192,132,252,0.08);
  border-color: rgba(192,132,252,0.2);
  color: var(--charcoal);
}
.sort-filter option { background: #0F0820; color: var(--charcoal); }

/* Mobile overlay header override */
@media (max-width: 900px) {
  .overlay-header {
    background: rgba(10, 5, 21, 0.96) !important;
    border-bottom: 1px solid rgba(192,132,252,0.15);
  }
}

/* ═══════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════ */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060110;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  text-align: center;
  animation: splashIn 1s ease forwards;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-logo {
  width: 90px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 0 22px rgba(201,164,58,0.55));
  animation: splashGem 2s ease-in-out infinite alternate;
}
@keyframes splashGem {
  from { transform: scale(1);    filter: drop-shadow(0 0 14px rgba(201,164,58,0.4)); }
  to   { transform: scale(1.07); filter: drop-shadow(0 0 32px rgba(232,192,96,0.85)); }
}
.splash-brand-title {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 12px;
  font-weight: 500;
  background: linear-gradient(90deg, #C9A43A 0%, #fff0b3 28%, #C9A43A 48%, #E8C060 68%, #C9A43A 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: josephineShimmer 3.5s linear infinite;
}
.splash-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 9px;
  color: var(--gold-light);
  margin-top: 6px;
  text-transform: uppercase;
}
.splash-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--stone);
  margin-top: 22px;
  letter-spacing: 2px;
}
.splash-loader {
  width: 80px;
  height: 1px;
  background: rgba(192,132,252,0.18);
  margin: 32px auto 0;
  position: relative;
  overflow: hidden;
}
.splash-loader::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--purple-mid), var(--gold-light));
  animation: splashLoad 1.8s ease forwards;
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes splashLoad {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(192,132,252,0.06);
  border: 1px solid rgba(192,132,252,0.15);
  padding: 38px 32px 32px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.testimonial-card::before {
  content: '\275D';
  position: absolute;
  top: 14px;
  left: 22px;
  font-size: 52px;
  color: rgba(192,132,252,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(168,85,247,0.14);
  border-color: rgba(192,132,252,0.3);
}
.testimonial-card-featured {
  background: linear-gradient(145deg, rgba(192,132,252,0.11), rgba(201,164,58,0.07));
  border-color: rgba(192,132,252,0.28);
  transform: translateY(-10px);
}
.testimonial-card-featured:hover {
  transform: translateY(-16px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(220,190,255,0.82);
  margin-bottom: 26px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(192,132,252,0.15);
  padding-top: 18px;
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
}
.testimonial-product {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card-featured { transform: none; }
}

/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(4,0,12,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
}
.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 86vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 0 100px rgba(168,85,247,0.22);
  animation: lightboxIn 0.38s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 26px;
  right: 34px;
  background: none;
  border: 1px solid rgba(220,190,255,0.25);
  color: rgba(220,190,255,0.7);
  font-size: 22px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
}
.lightbox-close:hover {
  color: var(--white);
  border-color: var(--purple-mid);
  background: rgba(192,132,252,0.1);
}
.lightbox-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(220,190,255,0.35);
  text-transform: uppercase;
  pointer-events: none;
}
/* Clickable cursor on modal image */
#productModalImage {
  cursor: zoom-in;
}

/* ═══════════════════════════════════════
   SPARKLE PARTICLES
   ═══════════════════════════════════════ */
.sparkle-particle {
  position: fixed;
  z-index: 8500;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--purple-mid) 100%);
  animation: sparkleFly 0.85s ease forwards;
  transform: translate(-50%, -50%);
}
@keyframes sparkleFly {
  0%   { opacity: 0.9; transform: translate(-50%,-50%) translate(0,0) scale(1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) translate(var(--tx),var(--ty)) scale(0.1); }
}

/* ═══════════════════════════════════════════════════════
   VISUAL POLISH — premium final layer
   ═══════════════════════════════════════════════════════ */

/* Grain noise texture overlay for luxury depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Section separator lines */
.section + .section,
.section-offers + .section,
.stats-section + .section {
  border-top: 1px solid rgba(192,132,252,0.07);
}

/* Catalog-text (subtitle under h2) */
.catalog-text {
  color: rgba(220,190,255,0.52);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Offers section overrides */
.section-offers        { background: linear-gradient(180deg,rgba(168,85,247,0.07) 0%,transparent 100%); }
.section-offers h2     { color: var(--white); }

/* Section h2 ornament line — gradient gold */
.section h2::after {
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  width: 80px;
  height: 1px;
  margin-top: 20px;
}

/* Subcategory active button */
.subcategory-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
  border-color: transparent;
}

/* Section tag line (h2 small text before heading) */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}

/* Product card hover glow */
.product-card:hover .product-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(168,85,247,0.12) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Price tag on card */
.product-card span {
  color: var(--gold-light);
  font-size: 14px;
}

/* Primary card button */
.primary-card-btn {
  background: linear-gradient(135deg, rgba(201,164,58,0.9), rgba(232,192,96,0.9));
  color: #0A0515;
  border: none;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.primary-card-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Smooth section reveal */
.section,
.stats-section,
.how-it-works-section {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   GDPR COOKIE CONSENT
   ═══════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99980;
  background: rgba(10,5,25,0.97);
  border-top: 1px solid rgba(201,164,58,0.22);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  backdrop-filter: blur(14px);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(220,190,255,0.65);
  line-height: 1.55;
  flex: 1;
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515;
  border: none;
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: opacity 0.2s;
}
.cookie-accept:hover { opacity: 0.88; }
.cookie-reject {
  background: transparent;
  color: rgba(220,190,255,0.5);
  border: 1px solid rgba(192,132,252,0.22);
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: 0.2s;
  text-transform: uppercase;
}
.cookie-reject:hover { color: var(--white); border-color: rgba(192,132,252,0.5); }

/* ═══════════════════════════════════════
   WISHLIST BADGE COUNT
   ═══════════════════════════════════════ */
.wishlist-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515;
  font-size: 9px;
  font-weight: 700;
  margin-left: 2px;
  vertical-align: super;
  line-height: 1;
  font-family: var(--font-body);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.wishlist-badge.pop { transform: scale(1.5); }

/* ═══════════════════════════════════════
   TYPEWRITER CURSOR
   ═══════════════════════════════════════ */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--gold-light);
  margin-left: 2px;
  vertical-align: middle;
  animation: twBlink 0.72s steps(1) infinite;
}
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ═══════════════════════════════════════
   TRENDING SECTION — HOT badge
   ═══════════════════════════════════════ */
.trending-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #e05, #ff6b35);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 5;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════════ */
.theme-toggle {
  background: none;
  border: 1px solid rgba(192,132,252,0.28);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  line-height: 1;
}
.theme-toggle:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: rotate(25deg) scale(1.1);
}

/* ═══════════════════════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════════════════════ */
body.light-mode {
  --black:       #FAF8FF;
  --cream:       #FAF8FF;
  --purple-deep: #F2EEFF;
  --purple-dark: #E8DFFA;
  --charcoal:    #16003A;
  --stone:       rgba(30, 5, 70, 0.60);
  --white:       #FFFFFF;
  --border:      rgba(120, 55, 200, 0.16);
  --border-dark: rgba(120, 55, 200, 0.09);
  --purple-pale: rgba(130, 65, 210, 0.06);
  background: #FAF8FF;
}
body.light-mode * { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }

/* Top bar stays dark */
body.light-mode .top-bar { background: #160030 !important; color: rgba(255,255,255,0.72); }

/* Header when scrolled */
body.light-mode .overlay-header.scrolled,
body.light-mode .normal-header {
  background: rgba(250,248,255,0.97) !important;
  border-bottom-color: rgba(120,55,200,0.13);
  box-shadow: 0 2px 24px rgba(40,10,100,0.08);
}
body.light-mode .overlay-header.scrolled .premium-menu a,
body.light-mode .normal-header .premium-menu a { color: #2a0a5e !important; }
body.light-mode .overlay-header.scrolled .premium-menu a:hover,
body.light-mode .normal-header .premium-menu a:hover { color: var(--gold) !important; }
body.light-mode .overlay-header.scrolled .brand-text h1 { background: none !important; -webkit-text-fill-color: #120028; color: #120028 !important; }
body.light-mode .overlay-header.scrolled .brand-text p { color: rgba(30,5,60,0.65) !important; }
body.light-mode .overlay-header.scrolled .cart-toggle,
body.light-mode .normal-header .cart-toggle { color: #2a0a5e !important; border-color: rgba(120,55,200,0.25) !important; }

/* Dropdown */
body.light-mode .dropdown-menu { background: #FFFFFF !important; border-color: rgba(120,55,200,0.12); }
body.light-mode .dropdown-menu a { color: #2a0a5e !important; }
body.light-mode .dropdown-menu a:hover { color: var(--gold) !important; background: rgba(120,55,200,0.04); }

/* Stats */
body.light-mode .stats-section { background: linear-gradient(180deg, transparent 0%, rgba(130,65,210,0.05) 50%, transparent 100%); }

/* Testimonials */
body.light-mode .testimonial-card { background: rgba(130,65,210,0.04); border-color: rgba(120,55,200,0.12); }
body.light-mode .testimonial-card-featured { background: linear-gradient(145deg, rgba(130,65,210,0.07), rgba(201,164,58,0.05)); }

/* FAQ */
body.light-mode .faq-question { color: #16003A; }
body.light-mode .faq-answer p { color: rgba(30,5,70,0.65); }

/* Guarantee strip */
body.light-mode .guarantee-strip { background: rgba(120,55,200,0.04); }
body.light-mode .guarantee-item { color: rgba(30,5,70,0.70); }

/* How it works */
body.light-mode .how-step-circle { background: var(--purple-deep); }
body.light-mode .how-step h4 { color: #16003A; }
body.light-mode .how-step p { color: rgba(30,5,70,0.60); }

/* Cart & modal */
body.light-mode .cart-header { background: #FFFFFF; }
body.light-mode .cart-header h3 { color: #16003A; }
body.light-mode .cart-item-name { color: #16003A; }
body.light-mode .cart-item-price, body.light-mode .cart-total span { color: rgba(30,5,70,0.55); }
body.light-mode .product-modal-info h3 { color: #16003A; }
body.light-mode .product-modal-info > p { color: rgba(30,5,70,0.62); }
body.light-mode .product-modal-category { color: rgba(30,5,70,0.48); }

/* Mobile nav */
body.light-mode .mobile-nav-overlay { background: rgba(250,248,255,0.98); }
body.light-mode .mobile-nav-overlay a { color: #2a0a5e; }

/* Footer stays dark always */
body.light-mode .footer { background: #060110 !important; }

/* Section borders */
body.light-mode .section + .section,
body.light-mode .section-offers + .section,
body.light-mode .stats-section + .section { border-top-color: rgba(120,55,200,0.08); }

/* Toggle icon when in light mode */
body.light-mode .theme-toggle { color: #6b21c8; border-color: rgba(110,40,200,0.3); }

/* ═══════════════════════════════════════════════════
   ROATĂ NOROC
   ═══════════════════════════════════════════════════ */

/* Banner promo */
.wheel-promo-bar {
  background: linear-gradient(90deg, rgba(201,164,58,0.12) 0%, rgba(168,85,247,0.12) 50%, rgba(201,164,58,0.12) 100%);
  border-top: 1px solid rgba(201,164,58,0.2);
  border-bottom: 1px solid rgba(201,164,58,0.2);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.wheel-promo-text {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}
.wheel-promo-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515;
  border: none;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  animation: promoBtnPulse 2.2s ease infinite;
  transition: opacity 0.2s;
}
.wheel-promo-btn:hover { opacity: 0.85; }
@keyframes promoBtnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,164,58,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(201,164,58,0); }
}

/* Modal overlay */
.wheel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,0,12,0.88);
  backdrop-filter: blur(10px);
  z-index: 99000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.wheel-overlay.show { opacity: 1; visibility: visible; }

.wheel-modal {
  background: var(--purple-deep);
  border: 1px solid rgba(201,164,58,0.28);
  padding: 44px 40px 36px;
  max-width: 440px;
  width: 94%;
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.wheel-overlay.show .wheel-modal { transform: translateY(0) scale(1); }

.wheel-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  color: rgba(220,190,255,0.4);
  font-size: 24px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.wheel-close:hover { color: var(--white); }

.wheel-title-icon {
  font-size: 32px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold-light), #c87fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wheel-heading {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 400;
}
.wheel-subtext {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 24px;
}
.wheel-privacy {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(220,190,255,0.35);
  letter-spacing: 0.5px;
  margin-top: 12px;
}

/* Email step */
.wheel-email-row {
  display: flex;
  gap: 0;
}
.wheel-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(192,132,252,0.25);
  border-right: none;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.wheel-input:focus { border-color: rgba(201,164,58,0.5); }
.wheel-input::placeholder { color: rgba(220,190,255,0.3); }
.wheel-go-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515;
  border: none;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.wheel-go-btn:hover { opacity: 0.85; }

/* Wheel arena */
.wheel-arena {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
}

/* Pointer (triangle at top) */
.wheel-pointer-wrap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.wheel-pointer {
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--gold-light);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Wheel face */
.wheel-face {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    #C9A43A   0deg   90deg,
    #7C3AED  90deg  180deg,
    #C2410C 180deg  270deg,
    #4C1D95 270deg  360deg
  );
  position: relative;
  box-shadow: 0 0 0 4px rgba(201,164,58,0.5), 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.08, 1.0);
  will-change: transform;
}

/* Segment labels */
.wheel-seg-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  letter-spacing: 1px;
  line-height: 1.25;
  margin-top: 0;
  transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px)));
  pointer-events: none;
}

/* Divider lines */
.wheel-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: rgba(255,255,255,0.35);
  transform-origin: left center;
  transform: rotate(var(--r));
  pointer-events: none;
}

/* Center hub */
.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0A0515;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 5;
}

/* Spin button */
.wheel-spin-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515;
  border: none;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.wheel-spin-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.wheel-spin-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Result step */
.wheel-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 16px auto 12px;
  max-width: 280px;
  border: 1px solid rgba(201,164,58,0.4);
}
.wheel-code {
  flex: 1;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--gold-light);
  padding: 12px 16px;
  text-align: center;
  background: rgba(201,164,58,0.08);
}
.wheel-copy-btn {
  background: rgba(201,164,58,0.15);
  border: none;
  border-left: 1px solid rgba(201,164,58,0.3);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.wheel-copy-btn:hover { background: rgba(201,164,58,0.25); }
.wheel-code-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(220,190,255,0.45);
  margin-bottom: 20px;
  line-height: 1.5;
}
.wheel-shop-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515;
  text-decoration: none;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.wheel-shop-btn:hover { opacity: 0.85; }

/* Light mode */
body.light-mode .wheel-modal { background: #F8F5FF; }
body.light-mode .wheel-input { background: #fff; color: #16003A; border-color: rgba(120,55,200,0.25); }
body.light-mode .wheel-input::placeholder { color: rgba(40,5,80,0.3); }
body.light-mode .wheel-promo-bar { background: linear-gradient(90deg, rgba(201,164,58,0.07), rgba(120,55,200,0.07), rgba(201,164,58,0.07)); }

/* ═══════════════════════════════════════════════════════════
   GRAVURĂ VIRTUALĂ
═══════════════════════════════════════════════════════════ */
.gravura-overlay {
  position: fixed; inset: 0;
  background: rgba(10,5,21,0.9);
  backdrop-filter: blur(10px);
  z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.gravura-overlay.open { opacity: 1; pointer-events: all; }
.gravura-modal {
  background: #180D30;
  border: 1px solid rgba(192,132,252,0.28);
  padding: 48px 40px 40px;
  max-width: 520px; width: calc(100% - 32px);
  position: relative; text-align: center;
}
.gravura-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(220,190,255,0.5); font-size: 26px;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.gravura-close:hover { color: var(--gold-light); }
.gravura-eyebrow {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.gravura-title {
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: 4px; color: var(--white); margin-bottom: 28px;
}
.gravura-canvas-wrap {
  margin: 0 auto 24px;
  width: 240px; height: 240px; position: relative;
}
#gravuraCanvas {
  border-radius: 50%;
  border: 1px solid rgba(192,132,252,0.12);
}
.gravura-input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,132,252,0.25);
  color: var(--charcoal); font-family: 'Georgia', serif;
  font-size: 18px; letter-spacing: 3px;
  padding: 12px 16px; outline: none; text-align: center;
  margin-bottom: 14px; transition: border-color 0.2s;
}
.gravura-input::placeholder { color: rgba(220,190,255,0.3); font-size: 13px; letter-spacing: 1px; }
.gravura-input:focus { border-color: var(--gold); }
.gravura-font-row {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 20px;
}
.gravura-font-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,132,252,0.2);
  color: var(--stone); padding: 8px 14px;
  font-size: 12px; cursor: pointer;
  transition: 0.2s; flex: 1;
}
.gravura-font-btn.active,
.gravura-font-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,164,58,0.07); }
.gravura-cta {
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515; border: none; padding: 14px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: opacity 0.2s;
}
.gravura-cta:hover { opacity: 0.85; }

/* light mode */
body.light-mode .gravura-modal { background: #FAF7FF; border-color: rgba(120,55,200,0.18); }
body.light-mode .gravura-input { background: rgba(0,0,0,0.03); color: #16003A; border-color: rgba(120,55,200,0.2); }
body.light-mode .gravura-font-btn { background: rgba(0,0,0,0.03); }

/* ═══════════════════════════════════════════════════════════
   QUIZ DE STIL
═══════════════════════════════════════════════════════════ */
.quiz-overlay {
  position: fixed; inset: 0;
  background: rgba(10,5,21,0.92);
  backdrop-filter: blur(12px);
  z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.quiz-overlay.open { opacity: 1; pointer-events: all; }
.quiz-modal {
  background: #180D30;
  border: 1px solid rgba(192,132,252,0.28);
  padding: 48px 40px 40px;
  max-width: 580px; width: calc(100% - 32px);
  position: relative; max-height: 92vh; overflow-y: auto;
}
.quiz-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(220,190,255,0.5); font-size: 26px;
  cursor: pointer; transition: color 0.2s;
}
.quiz-close:hover { color: var(--gold-light); }
.quiz-progress-wrap {
  width: 100%; height: 2px;
  background: rgba(192,132,252,0.15);
  margin-bottom: 36px;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--purple-mid));
  transition: width 0.4s ease;
}
.quiz-step-label {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.quiz-question {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 2px; color: var(--white);
  margin-bottom: 28px; line-height: 1.4;
}
.quiz-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 28px;
}
.quiz-opt {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,132,252,0.2);
  color: var(--stone); padding: 16px 12px;
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.3px; cursor: pointer;
  transition: 0.2s; text-align: center; line-height: 1.4;
}
.quiz-opt:hover, .quiz-opt.sel {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,164,58,0.08);
}
.quiz-nav {
  display: flex; gap: 12px;
}
.quiz-back-btn {
  background: transparent; border: 1px solid rgba(192,132,252,0.25);
  color: var(--stone); padding: 12px 22px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: 0.2s;
}
.quiz-back-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.quiz-next-btn {
  flex: 1; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515; border: none; padding: 12px 24px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: opacity 0.2s;
}
.quiz-next-btn:hover { opacity: 0.85; }
.quiz-results-header {
  text-align: center; margin-bottom: 28px;
}
.quiz-results-title {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 3px; color: var(--gold-light);
  margin-bottom: 6px;
}
.quiz-results-sub {
  font-family: var(--font-body); font-size: 13px; color: var(--stone);
}
.quiz-results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.quiz-res-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,132,252,0.2);
  padding: 12px; cursor: pointer;
  transition: 0.2s; text-align: center;
}
.quiz-res-card:hover {
  border-color: var(--gold); transform: translateY(-3px);
}
.quiz-res-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 8px;
}
.quiz-res-name {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 1.5px; color: var(--charcoal);
  margin-bottom: 3px; line-height: 1.3;
}
.quiz-res-price {
  font-family: var(--font-body); font-size: 11px; color: var(--gold);
}
.quiz-restart-btn {
  display: block; margin: 0 auto;
  background: transparent; border: 1px solid rgba(192,132,252,0.25);
  color: var(--stone); padding: 10px 24px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: 0.2s;
}
.quiz-restart-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* light mode */
body.light-mode .quiz-modal { background: #FAF7FF; border-color: rgba(120,55,200,0.18); }
body.light-mode .quiz-opt { background: rgba(0,0,0,0.03); }
body.light-mode .quiz-res-card { background: rgba(0,0,0,0.03); }
body.light-mode .quiz-res-name { color: #16003A; }

/* ═══════════════════════════════════════════════════════════
   SURPRINDE-MĂ
═══════════════════════════════════════════════════════════ */
.surprise-overlay {
  position: fixed; inset: 0;
  background: rgba(10,5,21,0.92);
  backdrop-filter: blur(12px);
  z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.surprise-overlay.open { opacity: 1; pointer-events: all; }
.surprise-modal {
  background: #180D30;
  border: 1px solid rgba(192,132,252,0.28);
  padding: 48px 40px 40px;
  max-width: 420px; width: calc(100% - 32px);
  position: relative; text-align: center;
}
.surprise-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(220,190,255,0.5); font-size: 26px;
  cursor: pointer; transition: color 0.2s;
}
.surprise-close:hover { color: var(--gold-light); }
.surprise-eyebrow {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.surprise-title {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 4px; color: var(--white); margin-bottom: 32px;
}

/* Gift box */
.gift-box-scene {
  width: 140px; height: 150px;
  margin: 0 auto 32px;
  position: relative;
  perspective: 400px;
}
.gift-box-body {
  position: absolute; bottom: 0; left: 10px; right: 10px;
  height: 85px;
  background: linear-gradient(160deg, #4A1D96, #7C3AED);
  border: 1px solid rgba(192,132,252,0.4);
}
.gift-box-body::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gold); opacity: 0.5;
  transform: translateX(-50%);
}
.gift-box-body::after {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; background: var(--gold); opacity: 0.5;
  transform: translateY(-50%);
}
.gift-box-lid {
  position: absolute; bottom: 85px; left: 4px; right: 4px;
  height: 30px;
  background: linear-gradient(160deg, #5B21B6, #8B5CF6);
  border: 1px solid rgba(192,132,252,0.5);
  transform-origin: center bottom;
  transition: transform 0.7s cubic-bezier(0.34,1.3,0.64,1);
}
.gift-box-lid.opened { transform: rotateX(-130deg) translateY(-6px); }
.gift-box-bow {
  position: absolute; bottom: 112px; left: 50%; transform: translateX(-50%);
  font-size: 32px; line-height: 1;
  transition: transform 0.5s 0.2s, opacity 0.5s 0.2s;
  filter: drop-shadow(0 0 6px rgba(201,164,58,0.6));
}
.gift-box-lid.opened + .gift-box-bow { transform: translateX(-50%) translateY(-50px); opacity: 0; }
.gift-sparkle {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  font-size: 36px; opacity: 0;
  transition: opacity 0.5s 0.5s;
  animation: sparkleFloat 1.8s ease-in-out infinite;
}
.gift-sparkle.visible { opacity: 1; }
@keyframes sparkleFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-8px) scale(1.15); }
}

/* Product reveal */
.surprise-reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s 0.65s, transform 0.5s 0.65s;
}
.surprise-reveal.visible { opacity: 1; transform: translateY(0); }
.surprise-prod-img {
  width: 110px; height: 110px; object-fit: cover;
  margin: 0 auto 12px;
  border: 1px solid rgba(192,132,252,0.2);
}
.surprise-prod-name {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 2px; color: var(--white); margin-bottom: 4px;
}
.surprise-prod-price {
  font-family: var(--font-body); font-size: 14px;
  color: var(--gold-light); margin-bottom: 20px;
}
.surprise-actions {
  display: flex; gap: 10px; justify-content: center;
}
.surprise-cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515; border: none; padding: 12px 22px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: opacity 0.2s;
}
.surprise-cart-btn:hover { opacity: 0.85; }
.surprise-retry-btn {
  background: transparent; border: 1px solid rgba(192,132,252,0.25);
  color: var(--stone); padding: 12px 18px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: 0.2s;
}
.surprise-retry-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* light mode */
body.light-mode .surprise-modal { background: #FAF7FF; border-color: rgba(120,55,200,0.18); }
body.light-mode .surprise-prod-name { color: #16003A; }

/* ═══════════════════════════════════════════════════════════
   GIFT FINDER WIZARD
═══════════════════════════════════════════════════════════ */
.gift-finder-section {
  padding: 80px 24px;
  text-align: center;
  position: relative; z-index: 1;
}
.gf-bar {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: flex-end;
  gap: 16px; margin: 36px auto 32px;
  max-width: 820px;
}
.gf-group { display: flex; flex-direction: column; gap: 7px; min-width: 150px; flex: 1; }
.gf-label {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  text-align: left;
}
.gf-sel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,132,252,0.22);
  color: var(--charcoal); font-family: var(--font-body);
  font-size: 13px; padding: 11px 36px 11px 14px;
  appearance: none; cursor: pointer; width: 100%;
  outline: none; transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23C9A43A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.gf-sel:focus { border-color: var(--gold); }
.gf-find-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0515; border: none; padding: 12px 32px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.gf-find-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.gf-results { max-width: 1100px; margin: 0 auto; }
.gf-results-label {
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 3px; color: var(--stone); text-transform: uppercase;
  margin-bottom: 24px;
}
.gf-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
  gap: 24px;
}
.gf-empty {
  grid-column: 1/-1; color: var(--stone);
  font-family: var(--font-body); font-size: 14px; padding: 24px 0;
}

/* light mode */
body.light-mode .gf-sel {
  background-color: rgba(0,0,0,0.03);
  border-color: rgba(120,55,200,0.2); color: #16003A;
}

/* ═══════════════════════════════════════════════════════════
   GHID PIETRE PREȚIOASE
═══════════════════════════════════════════════════════════ */
.gem-guide-section {
  padding: 80px 24px;
  text-align: center;
  position: relative; z-index: 1;
}
.gem-grid-outer { max-width: 1000px; margin: 40px auto 0; }
.gem-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-bottom: 36px;
}
.gem-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; padding: 20px 14px; width: 108px;
  border: 1px solid transparent; transition: 0.3s;
}
.gem-card:hover, .gem-card.active {
  border-color: var(--gold); background: rgba(201,164,58,0.06);
}
.gem-visual {
  width: 86px; height: 86px;
  position: relative; flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(192,132,252,0.18);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: #180D30; /* dark fallback while loading */
}
.gem-card:hover .gem-visual,
.gem-card.active .gem-visual {
  transform: scale(1.12) translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px var(--glow, rgba(201,164,58,0.4)), 0 2px 10px rgba(0,0,0,0.5);
}

/* ── Real photo ── */
.gem-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gem-card:hover .gem-photo,
.gem-card.active .gem-photo { transform: scale(1.08); }

/* ── CSS art fallback (ametist, acvamarin + any missing photo) ── */
.gem-css-art {
  position: absolute; inset: 0; border-radius: 0;
}
.gem-v-amethyst {
  background: radial-gradient(ellipse at 34% 28%, #D8A0FC 0%, #8B3DE8 40%, #4C1D95 75%, #280A60 100%);
}
.gem-v-aquamarine {
  background: radial-gradient(ellipse at 34% 28%, #A0E0FC 0%, #0CB4D8 40%, #0878A0 72%, #043E58 100%);
}

.gem-name {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 2px; color: var(--stone);
  text-transform: uppercase; transition: color 0.2s;
}
.gem-card:hover .gem-name,
.gem-card.active .gem-name { color: var(--gold-light); }

/* ── Info panel ── */
.gem-info-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(192,132,252,0.22);
  padding: 36px 40px; max-width: 900px;
  margin: 0 auto; text-align: left;
  display: none;
  animation: gemPanelIn 0.4s ease both;
}
@keyframes gemPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gem-panel-header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(192,132,252,0.15);
  flex-wrap: wrap;
}
.gem-panel-visual {
  width: 110px; height: 110px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(192,132,252,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.gem-panel-visual img,
.gem-panel-visual .gem-css-art {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.gem-panel-titles { flex: 1; }
.gem-panel-name {
  font-family: var(--font-display); font-size: 28px;
  letter-spacing: 4px; color: var(--white); margin-bottom: 3px;
}
.gem-panel-latin {
  font-family: var(--font-body); font-size: 12px;
  color: var(--gold); letter-spacing: 3px; font-style: italic;
}
.gem-color-badge {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.gem-color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0;
}
.gem-color-text {
  font-family: var(--font-body); font-size: 12px; color: var(--stone);
}

.gem-panel-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr));
  gap: 20px; margin-bottom: 24px;
}
.gem-info-item { display: flex; flex-direction: column; gap: 5px; }
.gem-info-label {
  font-family: var(--font-body); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.gem-info-value {
  font-family: var(--font-body); font-size: 13px;
  color: var(--charcoal); line-height: 1.5;
}

.hardness-row { display: flex; align-items: center; gap: 10px; }
.hardness-bg {
  flex: 1; height: 4px; background: rgba(192,132,252,0.15);
  border-radius: 2px; overflow: hidden;
}
.hardness-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; transition: width 0.7s ease;
}
.hardness-num {
  font-family: var(--font-display); font-size: 18px;
  color: var(--gold-light); letter-spacing: 1px; min-width: 28px;
}

.gem-fact-box {
  background: rgba(201,164,58,0.06);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
}
.gem-fact-label {
  display: block; font-family: var(--font-body); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.gem-fact-text {
  font-family: var(--font-body); font-size: 13px;
  color: var(--stone); line-height: 1.7; font-style: italic;
}

/* light mode */
body.light-mode .gem-info-panel { background: rgba(0,0,0,0.02); border-color: rgba(120,55,200,0.14); }
body.light-mode .gem-fact-box   { background: rgba(201,164,58,0.04); }
body.light-mode .gem-info-value { color: #16003A; }
body.light-mode .gem-card:hover,
body.light-mode .gem-card.active { background: rgba(201,164,58,0.04); }

/* ═══════════════════════════════════════════════════════════
   CONFETTI (for Surprise Me)
═══════════════════════════════════════════════════════════ */
.sp-confetti-wrap {
  position: fixed; inset: 0; pointer-events: none;
  z-index: 99999; overflow: hidden;
}
.sp-cp {
  position: absolute; top: -18px;
  animation: spCpFall linear forwards;
}
@keyframes spCpFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(var(--r)) translateX(var(--dx)); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PROMO STRIP — Quiz + Surprise buttons in hero
═══════════════════════════════════════════════════════════ */
.hero-extra-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 14px;
}
.hero-extra-btn {
  background: transparent;
  border: 1px solid rgba(232,192,96,0.4);
  color: rgba(232,192,96,0.9);
  padding: 10px 22px;
  font-family: var(--font-body); font-size: 10px;
  font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: 0.25s; text-decoration: none;
  display: inline-block;
}
.hero-extra-btn:hover {
  background: rgba(232,192,96,0.1); border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   UNBOXING ANIMATION (multumim.html)
═══════════════════════════════════════════════════════════ */
.unbox-scene {
  position: fixed; inset: 0; z-index: 99998;
  display: flex; align-items: center; justify-content: center;
  background: #100820;
  transition: opacity 0.6s;
}
.unbox-scene.hidden { opacity: 0; pointer-events: none; }
.unbox-box {
  width: 160px; height: 180px;
  position: relative;
  perspective: 600px;
}
.unbox-body {
  position: absolute; bottom: 0; left: 10px; right: 10px;
  height: 100px;
  background: linear-gradient(160deg, #4A1D96, #7C3AED);
  border: 1px solid rgba(192,132,252,0.4);
}
.unbox-body::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gold); opacity: 0.5; transform: translateX(-50%);
}
.unbox-body::after {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; background: var(--gold); opacity: 0.5; transform: translateY(-50%);
}
.unbox-lid {
  position: absolute; bottom: 100px; left: 4px; right: 4px;
  height: 32px;
  background: linear-gradient(160deg, #5B21B6, #8B5CF6);
  border: 1px solid rgba(192,132,252,0.5);
  transform-origin: center bottom;
  animation: unboxLidOpen 0.8s cubic-bezier(0.34,1.4,0.64,1) 1.2s both;
}
@keyframes unboxLidOpen {
  0%   { transform: rotateX(0deg); }
  100% { transform: rotateX(-140deg) translateY(-8px); }
}
.unbox-bow {
  position: absolute; bottom: 128px; left: 50%; transform: translateX(-50%);
  font-size: 36px;
  animation: unboxBowFloat 0.5s ease 1.8s both;
}
@keyframes unboxBowFloat {
  to { transform: translateX(-50%) translateY(-60px); opacity: 0; }
}
.unbox-jewel {
  position: absolute; bottom: 105px; left: 50%; transform: translateX(-50%);
  font-size: 40px; opacity: 0;
  animation: unboxJewelAppear 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.9s both;
  filter: drop-shadow(0 0 12px rgba(201,164,58,0.8));
}
@keyframes unboxJewelAppear {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.3) translateY(10px); }
  100% { opacity: 1; transform: translateX(-50%) scale(1) translateY(-20px); }
}
.unbox-brand {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 6px; color: var(--gold);
  margin-top: 28px; text-align: center;
  animation: fadeIn 0.5s ease 1.2s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
