/* QueenTingz — Conversion Landing Page */
/* Aesthetic: warm gold on rich dark, luxury beauty brand */
:root {
  --bg: #0d0b0f;
  --bg-card: #16131a;
  --bg-card-hover: #1d1820;
  --gold: #c9a455;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 164, 85, 0.18);
  --cream: #f5ede0;
  --cream-dim: rgba(245, 237, 224, 0.65);
  --text-muted: #8a7d6e;
  --border: rgba(201, 164, 85, 0.12);
  --border-hover: rgba(201, 164, 85, 0.28);
  --danger: #c94a4a;
  --green: #4ac98a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 2.5rem;
  background: rgba(13, 11, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  font-size: 0.78rem; font-weight: 600;
  background: var(--gold);
  color: #0d0b0f !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 2.5rem 4rem;
  gap: 3rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 164, 85, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__product {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.hero__product img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__product-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--gold); color: #0d0b0f;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__product-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
}
.hero__product-placeholder svg { opacity: 0.3; }
.hero__product-placeholder span {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.06em;
}

.hero__content { display: flex; flex-direction: column; gap: 0; }
.hero__eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--cream); margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 1rem; color: var(--cream-dim);
  line-height: 1.75; margin-bottom: 2rem;
  max-width: 440px;
}
.hero__price-row {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2rem;
}
.hero__price {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--cream);
}
.hero__price-sub {
  font-size: 0.82rem; color: var(--text-muted);
}
.hero__cta-group { display: flex; flex-direction: column; gap: 0.75rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #0d0b0f;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201, 164, 85, 0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 164, 85, 0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--cream-dim);
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.04em;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem; border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--border-hover); color: var(--cream); }
.hero__trust {
  display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.03em;
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 8rem 1.5rem 4rem; }
  .hero__product { aspect-ratio: 3/2; }
  .hero__content { text-align: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__cta-group { align-items: center; }
  .hero__trust { justify-content: center; }
}

/* ── SOCIAL PROOF STRIP ── */
.ugc-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.ugc-strip__label {
  text-align: center;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.ugc-strip__scroll {
  display: flex; gap: 1rem; overflow-x: auto;
  padding: 0 2.5rem 0.75rem;
  scrollbar-width: none;
}
.ugc-strip__scroll::-webkit-scrollbar { display: none; }
.ugc-card {
  flex-shrink: 0; width: 200px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  background: var(--bg-card-hover);
  transition: border-color 0.2s, transform 0.2s;
}
.ugc-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.ugc-card__img { width: 200px; height: 260px; object-fit: cover; display: block; background: var(--bg-card); }
.ugc-card__placeholder {
  width: 200px; height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--bg-card-hover); border: 1px solid var(--border);
}
.ugc-card__placeholder svg { opacity: 0.2; }
.ugc-card__placeholder span { font-size: 0.65rem; color: var(--text-muted); }
.ugc-card__meta {
  padding: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; color: var(--text-muted);
}
.ugc-card__stars { color: var(--gold); }
.ugc-card__source { margin-left: auto; font-size: 0.6rem; opacity: 0.5; }

/* ── FEATURED PRODUCTS ── */
.featured {
  padding: 7rem 2.5rem;
}
.featured__header { text-align: center; margin-bottom: 3.5rem; }
.featured__label {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream); margin-bottom: 0.75rem;
}
.featured__sub { font-size: 0.9rem; color: var(--text-muted); }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.product-card__img {
  aspect-ratio: 1; width: 100%; object-fit: cover;
  background: var(--bg-card-hover); display: block;
}
.product-card__placeholder {
  aspect-ratio: 1; width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--bg-card-hover);
}
.product-card__placeholder svg { opacity: 0.2; }
.product-card__placeholder span { font-size: 0.7rem; color: var(--text-muted); }
.product-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card__type {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-card__rating {
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 1rem;
}
.product-card__stars { color: var(--gold); font-size: 0.75rem; }
.product-card__review-count { font-size: 0.7rem; color: var(--text-muted); }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--cream);
}
.product-card__price-old {
  font-size: 0.85rem; color: var(--text-muted);
  text-decoration: line-through; margin-left: 0.4rem;
}
.product-card__btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.product-card__btn:hover {
  background: var(--gold); color: #0d0b0f;
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .featured__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── WHY QUEENTINGZ ── */
.why {
  padding: 6rem 2.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why__inner { max-width: 1100px; margin: 0 auto; }
.why__header { text-align: center; margin-bottom: 3.5rem; }
.why__label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--cream);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.why__pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.why__pillar:last-child { border-right: none; }
.why__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.why__pillar h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.75rem;
}
.why__pillar p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .why__pillar:last-child { border-bottom: none; }
}

/* ── REVIEWS ── */
.reviews {
  padding: 7rem 2.5rem;
}
.reviews__header { text-align: center; margin-bottom: 3rem; }
.reviews__label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.review-card__stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }
.review-card__text {
  font-family: var(--font-display);
  font-size: 0.95rem; font-style: italic;
  color: var(--cream); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.review-card__author { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; color: var(--gold);
  border: 1px solid var(--border);
}
.review-card__name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.review-card__detail { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 8rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 164, 85, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-cta__eyebrow {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--cream);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.final-cta__sub {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.final-cta__price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border-hover);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.final-cta__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #0d0b0f;
  font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.04em;
  text-decoration: none; text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 3rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 32px rgba(201, 164, 85, 0.35);
}
.final-cta__btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 164, 85, 0.45);
}
.final-cta__guarantee {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 1.5rem;
  font-size: 0.72rem; color: var(--text-muted);
}
.final-cta__guarantee svg { color: var(--green); }

/* ── FOOTER ── */
.footer {
  padding: 3.5rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.footer__inner {
  max-width: 1100px; margin: 0 auto 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.footer__desc { font-size: 0.8rem; color: var(--text-muted); max-width: 260px; }
.footer__links { display: flex; gap: 2rem; }
.footer__links-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links-col a {
  font-size: 0.78rem; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer__links-col a:hover { color: var(--cream); }
.footer__bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem; color: var(--text-muted); opacity: 0.5;
}

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer__links { flex-direction: column; gap: 1.5rem; }
}

/* ── UTILITY ── */
.section-divider {
  width: 48px; height: 1px;
  background: var(--gold); margin: 0 auto;
  opacity: 0.5;
}