@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   OPTION 7 — DARK LUXURY EDITION (Pink Accents)
   Palette: Deep Obsidian · Hot Pink · Slate Grey
   ============================================================ */

:root {
  /* Brand Pink replacing Gold */
  --brand:        #ff007f;
  --brand-light:  #ff4da6;
  --brand-dark:   #cc0066;
  
  /* Dark modes replacing Ivory */
  --obsidian:     #050508;
  --deep:         #0a0b10;
  --panel:        #10121a;
  --panel-light:  #181b26;
  
  /* Text & Accents */
  --text-main:    #cbd5e1;
  --text-muted:   #64748b;
  --heading:      #f8fafc;
  
  /* Utilities */
  --mist:         rgba(255,0,127,0.04);
  --border:       rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.12);
  --border-brand: rgba(255,0,127,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.7;
  background-color: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings use Cormorant for luxury editorial feel */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 0.4em;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--brand-light); }

/* ---- Container ---- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Brand Rule ---- */
.brand-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
  margin-top: 16px;
}
.brand-rule.centered { margin-left: auto; margin-right: auto; }

/* ---- Eyebrow Label ---- */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--border-brand);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover {
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 40px rgba(255,0,127,0.3);
}

.btn-primary > * { position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary i { position: relative; z-index: 1; }

/* Hero ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ============================================================
   HEADER
   ============================================================ */
.lux-announcement {
  background-color: var(--obsidian);
  border-bottom: 1px solid var(--border);
  padding: 10px 32px;
}

.lux-header {
  background: rgba(10,11,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.lux-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.lux-nav a:hover,
.lux-nav a.active { color: #fff; }

.lux-nav a.active {
  border-bottom: 1px solid var(--brand);
  padding-bottom: 2px;
}

/* Cart badge */
.cart-badge {
  background: var(--brand);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--obsidian);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(1) contrast(1.2);
}

/* Cinematic vignette layers */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,0,127,0.06) 0%, transparent 60%),
    linear-gradient(to bottom,
      rgba(5,5,8,0.6) 0%,
      rgba(5,5,8,0.2) 40%,
      rgba(5,5,8,0.7) 75%,
      rgba(5,5,8,1) 100%
    );
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  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");
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 80px 32px 140px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-kicker-line {
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.6;
}
.hero-kicker-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero-heading em {
  font-style: italic;
  background: linear-gradient(135deg, #fff 0%, var(--brand-light) 60%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 52px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
  color: rgba(255,0,127,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.4;
}

/* ============================================================
   TRUST ROW
   ============================================================ */
.trust-row {
  background-color: var(--obsidian);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-brand);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--mist);
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.lux-product-card {
  display: flex;
  flex-direction: column;
  background: var(--deep);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.lux-product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-product-card:hover::after { transform: scaleX(1); }
.lux-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-brand);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,0,127,0.1);
}

.lux-product-img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.lux-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.9) contrast(1.1);
}
.lux-product-card:hover .lux-product-img img { transform: scale(1.07); }

.lux-product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--brand);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 5;
}

.lux-product-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lux-product-category {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 7px;
}

.lux-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 6px;
}

.lux-product-rating {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lux-product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--heading);
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.lux-product-price del {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.lux-product-cta {
  margin-top: auto;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.section-padding { padding: 96px 0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
  background-color: var(--obsidian);
  border-top: 1px solid var(--border);
}
.contact-section-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576086213369-97a306d36557?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  filter: grayscale(1);
}
.contact-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,0,127,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(204,0,102,0.06) 0%, transparent 55%);
}
.contact-section-content {
  position: relative;
  z-index: 10;
  padding: 130px 32px;
  text-align: center;
}
.contact-section-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
  display: inline-block;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.contact-heading em {
  font-style: italic;
  color: var(--brand);
}
.contact-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 52px;
  letter-spacing: 0.02em;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
}
.contact-phone:hover { color: var(--brand); border-color: var(--brand); }

/* Horizontal ornament */
.contact-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 260px;
}
.contact-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,127,0.4));
}
.contact-ornament-line.right {
  background: linear-gradient(90deg, rgba(255,0,127,0.4), transparent);
}
.contact-ornament-diamond {
  width: 5px;
  height: 5px;
  background: var(--brand);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lux-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 72px 32px 32px;
}
.lux-footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}
.lux-footer-col-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: block;
}
.lux-footer ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.lux-footer ul li a:hover { color: var(--brand); }
.lux-footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  letter-spacing: 0.01em;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: var(--panel-light); }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================================
   CONSENT BAR
   ============================================================ */
#consent-bar {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
}
