/* ============================================================
   DEERTY MARKET — Luxury Design System
   Dark theme with champagne gold accents, glassmorphism, 
   editorial typography, and premium micro-animations
   ============================================================ */

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

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors — Dark Luxury Palette */
  --color-bg-primary: #070709;
  --color-bg-secondary: #0e0e12;
  --color-bg-tertiary: #16161c;
  --color-bg-card: rgba(22, 22, 28, 0.6);
  --color-bg-glass: rgba(22, 22, 28, 0.45);

  --color-gold: #c9a96e;
  --color-gold-light: #dfc59b;
  --color-gold-dark: #9e7f4a;
  --color-gold-glow: rgba(201, 169, 110, 0.15);

  --color-ivory: #f5f0e8;
  --color-ivory-soft: #e8e0d4;
  --color-text-primary: #f5f0e8;
  --color-text-secondary: rgba(245, 240, 232, 0.65);
  --color-text-muted: rgba(245, 240, 232, 0.4);

  --color-burgundy: #5a1a2a;
  --color-burgundy-light: #8a2a3e;
  --color-accent-rose: #d4707a;

  --color-border: rgba(201, 169, 110, 0.12);
  --color-border-hover: rgba(201, 169, 110, 0.3);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 32px rgba(201, 169, 110, 0.1);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.08);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1440px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Reveal Animation (Intersection Observer) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-xl);
  transition: background var(--transition-base), 
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.site-header.scrolled {
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-bg-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.btn-nav {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.btn-nav--outline {
  border: 1px solid var(--color-border-hover);
  color: var(--color-text-primary);
}

.btn-nav--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-nav--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-primary);
}

.btn-nav--gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--color-text-primary);
  transition: all var(--transition-fast);
}

/* ============================================================
   AGE VERIFICATION OVERLAY
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 7, 9, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.age-gate.dismissed {
  opacity: 0;
  pointer-events: none;
}

.age-gate-content {
  text-align: center;
  max-width: 460px;
  padding: var(--space-3xl);
}

.age-gate-content .logo {
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-2xl);
}

.age-gate-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.age-gate-content p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.age-gate-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.age-gate-buttons .btn-gold {
  padding: 14px 40px;
}

.age-gate-buttons .btn-outline {
  padding: 14px 32px;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

.age-gate-buttons .btn-outline:hover {
  border-color: var(--color-accent-rose);
  color: var(--color-accent-rose);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 7, 9, 0.92) 0%,
    rgba(7, 7, 9, 0.75) 35%,
    rgba(7, 7, 9, 0.4) 65%,
    rgba(7, 7, 9, 0.2) 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--color-bg-primary), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: var(--space-5xl) var(--space-xl);
  padding-top: calc(var(--header-height) + var(--space-5xl));
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s ease forwards;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.5s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-title .line {
  display: block;
}

.hero-description {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.9s ease forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-primary);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.25);
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-text-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-base);
}

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

.btn-text-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.btn-text-link:hover svg {
  transform: translateX(4px);
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: var(--space-3xl);
  left: var(--space-xl);
  right: var(--space-xl);
  z-index: 2;
  display: flex;
  gap: var(--space-3xl);
  opacity: 0;
  animation: fadeSlideUp 0.9s 1.2s ease forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-gold);
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--space-5xl) 0;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.how-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.how-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.step-card {
  position: relative;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-gold-glow);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.step-card p {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   FEATURED SELLERS
   ============================================================ */
.featured-sellers {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.featured-sellers::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold-glow), transparent 70%);
  pointer-events: none;
}

.sellers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
}

.sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.seller-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  cursor: pointer;
  group: seller;
}

.seller-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.seller-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.seller-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.seller-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(7, 7, 9, 0.9), transparent);
}

.seller-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.seller-info {
  padding: var(--space-lg);
  position: relative;
  margin-top: -var(--space-xl);
}

.seller-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.seller-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.seller-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.seller-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.seller-meta .gold {
  color: var(--color-gold);
}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.product-showcase {
  padding: var(--space-5xl) 0;
}

.showcase-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.showcase-header .section-subtitle {
  margin: 0 auto;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
}

.category-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.category-tab:hover,
.category-tab.active {
  color: var(--color-bg-primary);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.product-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.product-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-feature:hover img {
  transform: scale(1.04);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 9, 0.85) 0%,
    rgba(7, 7, 9, 0.3) 50%,
    rgba(7, 7, 9, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl);
  transition: background var(--transition-base);
}

.product-feature:hover .product-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 7, 9, 0.9) 0%,
    rgba(7, 7, 9, 0.4) 50%,
    rgba(7, 7, 9, 0.15) 100%
  );
}

.product-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.product-price-range {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: var(--space-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.product-feature:hover .product-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SELLER CTA / BECOME A SELLER
   ============================================================ */
.seller-cta {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.seller-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--color-gold-glow), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-label {
  justify-content: center;
}

.cta-content .section-title {
  margin-bottom: var(--space-lg);
}

.cta-content .section-subtitle {
  margin: 0 auto var(--space-2xl);
  max-width: 560px;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.cta-feature {
  padding: var(--space-lg);
}

.cta-feature-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.cta-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.cta-feature p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-5xl) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
  font-size: 0.85rem;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold-glow), var(--color-bg-tertiary));
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-gold);
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================================
   PRIVACY & TRUST SECTION
   ============================================================ */
.trust-section {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.trust-item {
  padding: var(--space-xl);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-gold-glow);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.4rem;
}

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-xl);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.15); }
  50% { box-shadow: 0 0 30px 10px rgba(201, 169, 110, 0.08); }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  z-index: 10001;
  transition: width 50ms linear;
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .sellers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid .step-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Header */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(7, 7, 9, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-nav--outline {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-3xl));
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Grids */
  .sellers-grid,
  .products-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid .step-card:last-child,
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

  .cta-features {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sellers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .category-tabs {
    flex-wrap: wrap;
  }
}
