/*==========================================================
   inaffi.com — Complete Design System v3
   Built fresh from WT v1 globals.css + tailwind.config.ts
   ============================================================
   TABLE OF CONTENTS:
   01. CSS Custom Properties (from WT v1 globals.css exactly)
   02. Reset & Base
   03. Typography
   04. Layout & Containers
   05. Buttons
   06. Forms & Inputs
   07. Flash Messages
   08. Header
   09. Footer v2 (4-col)
   10. Homepage — Hero
   11. Homepage — Brand Strip
   12. Homepage — How It Works
   13. Homepage — Creators Section
   14. Homepage — Shoppers Section
   15. Homepage — Pricing
   16. Homepage — Footer CTA
   17. Dashboard — Layout & Sidebar
   18. Dashboard — Stats Cards
   19. Dashboard — Outfit List
   20. Dashboard — Forms
   21. Admin Panel
   22. Auth Pages
   23. Legal Pages
   24. Storefront — Profile Header
   25. Storefront — Category Filter
   26. Storefront — Outfit Card
   27. Storefront — Product Grid & Item
   28. Platform Badge
   29. Utilities
   30. Animations
   31. Responsive — Tablet (max 768px)
   32. Responsive — Mobile (max 480px)
   ============================================================ */


/* ============================================================
   01. CSS CUSTOM PROPERTIES
   Exact values from WT v1 app/globals.css
   ============================================================ */
:root {
  /* Core palette */
  --color-background:        #0A0C14;
  --color-surface:           #12141E;
  --color-surface-elevated:  #1A1C28;
  --color-primary-dark:      #F4EDE4;
  --color-gold-accent:       #C9A96E;
  --color-gold-accent-hover: #B8944F;
  --color-text-primary:      #F4EDE4;
  --color-text-secondary:    #8A8680;
  --color-text-muted:        #555550;
  --color-border:            #252730;
  --color-border-light:      #1E2028;
  --color-wine:              #4A2E35;
  --color-section-alt:       #0E1019;
  --color-section-darker:    #080A10;

  /* Product cards */
  --color-product-card-bg:     #12141E;
  --color-product-card-border: #252730;
  --color-product-card-hover:  #C9A96E;

  /* Shop button */
  --color-shop-btn-bg:       #C9A96E;
  --color-shop-btn-text:     #0A0C14;
  --color-shop-btn-hover:    #B8944F;

  /* Gold glow */
  --color-gold-glow:        rgba(201,169,110,0.15);
  --color-gold-glow-strong: rgba(201,169,110,0.30);

  /* Feedback */
  --color-success:    #2D6A4F;
  --color-success-bg: #0d2e1f;
  --color-error:      #9B2335;
  --color-error-bg:   #2e0d10;
  --color-info:       #1A5276;
  --color-info-bg:    #0d1e2e;

  /* Dashboard sidebar */
  --color-sidebar-bg:     #12141E;
  --color-sidebar-hover:  #1A1C28;
  --color-sidebar-active: #C9A96E;
  --color-stat-card-bg:   #12141E;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;
  --line-height:    1.6;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;

  /* Layout — from tailwind.config.ts */
  --max-width:      1100px;
  --max-width-wide: 1440px;
  --sidebar-width:  240px;
  --header-height:  64px;

  /* Borders & Shadows — from tailwind.config.ts */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;
  --btn-radius:  9999px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.4);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-gold: 0 12px 40px rgba(201,169,110,0.08);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-background); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-accent); }


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2rem,   4vw, 3rem);    }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem,2vw, 1.75rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p { margin-bottom: var(--space-md); color: var(--color-text-primary); }
p:last-child { margin-bottom: 0; }

.text-secondary  { color: var(--color-text-secondary); }
.text-muted      { color: var(--color-text-muted); }
.text-gold       { color: var(--color-gold-accent); }
.text-center     { text-align: center; }
.text-sm         { font-size: 0.875rem; }
.text-xs         { font-size: 0.75rem; }
.font-display    { font-family: var(--font-display); }
.font-semibold   { font-weight: 600; }
.font-bold       { font-weight: 700; }


/* ============================================================
   04. LAYOUT & CONTAINERS
   ============================================================ */
/* Standard container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Matches WT v1 container-content */
.container-content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Matches WT v1 container-storefront (for storefront with ad gutters) */
.container-storefront {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow  { max-width: 640px; }

@media (max-width: 640px) {
  .container-content  { padding: 0 var(--space-md); }
  .container-storefront { padding: 0 var(--space-md); }
}

/* Flex helpers */
.flex            { display: flex; }
.flex-col        { display: flex; flex-direction: column; }
.items-center    { align-items: center; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-lg); }

/* Spacing helpers */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }


/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary-dark);
  color: #000;
  border-color: var(--color-primary-dark);
}
.btn--primary:hover { background: #333; border-color: #333; color: #fff; }

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

.btn--outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.btn--outline:hover { background: var(--color-primary-dark); color: #000; }

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--color-text-primary); background: var(--color-border); }

.btn--danger {
  background: #C0392B;
  color: #fff;
  border-color: #C0392B;
}
.btn--danger:hover { background: #A93226; border-color: #A93226; }

.btn--sm   { padding: 6px 14px; font-size: 0.875rem; }
.btn--lg   { padding: 14px 28px; font-size: 1.0625rem; }
.btn--full { width: 100%; }

/* Gold outline — header nav */
.btn--gold-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-gold-accent);
  border-radius: var(--btn-radius);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold-accent);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}
.btn--gold-outline:hover {
  background: var(--color-gold-accent);
  color: var(--color-background);
}

/* Pill buttons — landing page */
.btn-pill-outline {
  display: inline-block;
  background: var(--color-background);
  border: 1px solid rgba(244,237,228,0.2);
  border-radius: var(--btn-radius);
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.btn-pill-outline:hover { border-color: var(--color-gold-accent); color: var(--color-gold-accent); }

.btn-pill-gold {
  display: inline-block;
  background: var(--color-gold-accent);
  border-radius: var(--btn-radius);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-background);
  text-decoration: none;
  transition: background var(--transition-fast);
}
.btn-pill-gold:hover { background: var(--color-gold-accent-hover); }

.btn-pill-border {
  display: inline-block;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.btn-pill-border:hover { border-color: var(--color-gold-accent); color: var(--color-gold-accent); }

.btn-pill-gold-outline {
  display: inline-block;
  border: 1.5px solid var(--color-gold-accent);
  border-radius: var(--btn-radius);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-accent);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.btn-pill-gold-outline:hover { background: var(--color-gold-accent); color: var(--color-background); }

.btn--cta-outline {
  display: inline-block;
  border: 2px solid var(--color-gold-accent);
  padding: 12px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-accent);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.btn--cta-outline:hover { background: var(--color-gold-accent); color: var(--color-background); }


/* ============================================================
   06. FORMS & INPUTS
   ============================================================ */
.form-group { margin-bottom: var(--space-lg); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.form-label .required { color: var(--color-error); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold-accent);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--color-text-muted); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-hint  { font-size: 0.8125rem; color: var(--color-text-secondary); margin-top: var(--space-xs); }
.form-error { font-size: 0.8125rem; color: var(--color-error); margin-top: var(--space-xs); }

/* Toggle switch */
.toggle-wrap { display: flex; align-items: center; gap: var(--space-sm); }

.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; position: absolute; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.toggle input:checked + .toggle-slider { background: var(--color-gold-accent); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

.toggle-label { font-size: 0.875rem; color: var(--color-text-primary); cursor: pointer; }

/* Copy link input */
.copy-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.copy-wrap .form-input {
  border: none;
  border-radius: 0;
  flex: 1;
  background: var(--color-background);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.copy-wrap .btn--copy {
  background: var(--color-primary-dark);
  color: #000;
  border: none;
  border-radius: 0;
  padding: 8px 14px;
  font-size: 0.8125rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
.copy-wrap .btn--copy:hover { background: #333; color: #fff; }


/* ============================================================
   07. FLASH MESSAGES
   ============================================================ */
.flash {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  border-left: 4px solid;
}

.flash--success { background: var(--color-success-bg); color: var(--color-success); border-color: var(--color-success); }
.flash--error   { background: var(--color-error-bg); color: var(--color-error); border-color: var(--color-error); }
.flash--info    { background: var(--color-info-bg); color: var(--color-info); border-color: var(--color-info); }


/* ============================================================
   08. HEADER
   ============================================================ */
.site-header {
  border-bottom: 1px solid var(--color-border-light);
  background: rgba(10,12,20,0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT nav — About|Shop|Creators */
.site-header__left-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .site-header__left-nav { display: flex; }
}

.nav-sep {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
  font-size: 0.875rem;
}

/* CENTER logo — absolute centered like WT v1 */
.site-header__logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.site-header__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  line-height: 1;
}
.site-header__logo-center:hover .site-header__logo-text { color: var(--color-gold-accent); }

/* RIGHT nav — auth buttons */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .site-header__nav { gap: 16px; }
}

.nav-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.nav-text-link:hover { color: var(--color-text-primary); }
.nav-text-link--danger { color: #9B2335; }
.nav-text-link--danger:hover { color: #c0392b; }

.auth-header {
  height: var(--header-height);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-header__logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-gold-accent);
}


/* ============================================================
   09. FOOTER v2 (4-column — matches WT v1 Footer.tsx)
   ============================================================ */
.site-footer-v2 {
  border-top: 1px solid var(--color-border);
  background: var(--color-section-darker);
  margin-top: auto;
}

.site-footer-v2__grid {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .site-footer-v2__grid { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 1024px) {
  .site-footer-v2__grid { grid-template-columns: repeat(4,1fr); padding: 64px 0; }
}

.site-footer-v2__logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  display: block;
}

.site-footer-v2__tagline {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.site-footer-v2__socials {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-v2__social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.site-footer-v2__social-icon:hover { border-color: var(--color-gold-accent); color: var(--color-gold-accent); }

.site-footer-v2__col-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.site-footer-v2__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-v2__col-links a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.site-footer-v2__col-links a:hover { color: var(--color-text-primary); }

.site-footer-v2__bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 640px) { .site-footer-v2__bottom { flex-direction: row; } }

.site-footer-v2__copy {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.site-footer-v2__platforms { display: flex; align-items: center; gap: 8px; }

.site-footer-v2__platform-badge {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
}


/* ============================================================
   10. HOMEPAGE — HERO SECTION (lp-hero)
   ============================================================ */
.lp-hero {
  padding: 64px 0;
  background: var(--color-background);
}
@media (min-width: 640px)  { .lp-hero { padding: 80px 0; } }
@media (min-width: 1024px) { .lp-hero { padding: 96px 0; } }

.lp-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .lp-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.lp-hero__left { text-align: center; }
@media (min-width: 1024px) {
  .lp-hero__left {
    width: 35%;
    flex-shrink: 0;
    text-align: left;
    padding-top: 32px;
  }
}

.lp-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-accent);
  margin-bottom: 20px;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.375rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-gold-accent);
  margin-bottom: 0;
}

.lp-hero__sub {
  margin-top: 24px;
  font-size: 0.9375rem;
  color: rgba(244,237,228,0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

.lp-hero__cta { margin-top: 32px; }

.lp-hero__tagline {
  margin-top: 64px;
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(244,237,228,0.6);
  font-style: italic;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.lp-hero__right { flex: 1; }

/* 3-col tilted photo collage */
.lp-collage {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
@media (min-width: 640px) { .lp-collage { gap: 24px; } }

.lp-collage__col { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 640px) { .lp-collage__col { gap: 24px; } }

.lp-collage__col--offset { margin-top: 40px; }

.lp-collage__img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(244,237,228,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition-slow);
}

.lp-collage__img--tilt-n2 { transform: rotate(-2deg); }
.lp-collage__img--tilt-p2 { transform: rotate(2deg); }
.lp-collage__img--tilt-p3 { transform: rotate(3deg); }
.lp-collage__img--tilt-n1 { transform: rotate(-1deg); }
.lp-collage__img:hover { transform: rotate(0deg) !important; }

/* Image helpers */
.lp-img-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,237,228,0.1);
}


/* ============================================================
   11. HOMEPAGE — BRAND STRIP
   ============================================================ */
.brand-strip-section { padding: 16px 0; background: var(--color-background); }

.brand-strip-box {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  overflow: hidden;
}

.brand-strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 12px;
}

.brand-strip__overflow { overflow: hidden; position: relative; }

.brand-strip__overflow::before,
.brand-strip__overflow::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.brand-strip__overflow::before { left: 0; background: linear-gradient(to right, var(--color-surface), transparent); }
.brand-strip__overflow::after  { right: 0; background: linear-gradient(to left, var(--color-surface), transparent); }

.brand-strip__track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: scroll-x 20s linear infinite;
}
@media (min-width: 640px) { .brand-strip__track { gap: 56px; } }
.brand-strip__track:hover { animation-play-state: paused; }

.brand-strip__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 8px;
}

.brand-strip__logo-text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}
.brand-strip__item:hover .brand-strip__logo-text { opacity: 1; }


/* ============================================================
   12. HOMEPAGE — HOW IT WORKS
   ============================================================ */
.lp-how {
  padding: 80px 0;
  background: var(--color-surface);
}
@media (min-width: 640px)  { .lp-how { padding: 96px 0; } }
@media (min-width: 1024px) { .lp-how { padding: 112px 0; } }

.lp-section-header { text-align: center; margin-bottom: 56px; }

.lp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.lp-section-sub {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-top: 20px;
  margin-bottom: 0;
}

.lp-gold-rule {
  width: 80px;
  height: 3px;
  background: var(--color-gold-accent);
  margin: 20px auto 0;
}

/* 3-step grid */
.lp-steps {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .lp-steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
}

.lp-step-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  color: rgba(244,237,228,0.2);
  font-size: 1.125rem;
}
@media (min-width: 768px) { .lp-step-arrow { display: flex; } }

.lp-step-card {
  position: relative;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  padding-top: 40px;
  background: rgba(26,28,40,0.5);
  text-align: center;
}

.lp-step-card__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold-accent);
  color: var(--color-background);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.lp-step-card__icon { color: var(--color-gold-accent); display: flex; justify-content: center; margin-bottom: 20px; }

.lp-step-card__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.lp-step-card__desc {
  font-size: 0.8125rem;
  color: rgba(244,237,228,0.5);
  line-height: 1.65;
  margin-bottom: 0;
}

.lp-step-card__platforms { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }

.lp-platform-dot {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Stats bar */
.lp-stats-bar {
  margin-top: 56px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .lp-stats-bar { grid-template-columns: repeat(3,1fr); } }

.lp-stats-bar__item {
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.lp-stats-bar__item:last-child { border-bottom: none; }
@media (min-width: 640px) {
  .lp-stats-bar__item { border-bottom: none; border-right: 1px solid var(--color-border); }
  .lp-stats-bar__item:last-child { border-right: none; }
}

.lp-stats-bar__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.lp-stats-bar__label { font-size: 0.875rem; color: var(--color-text-secondary); margin-bottom: 0; }


/* ============================================================
   13 & 14. HOMEPAGE — SPLIT SECTIONS (Creators + Shoppers)
   ============================================================ */
/* ── Creators section ── */
.lp-creators { padding: 64px 0; background: var(--color-background); }
@media (min-width: 640px)  { .lp-creators { padding: 80px 0; } }
@media (min-width: 1024px) { .lp-creators { padding: 96px 0; } }

.lp-split { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 1024px) {
  .lp-split { flex-direction: row; align-items: center; gap: 64px; }
}

.lp-split__left { text-align: center; overflow: visible; }
@media (min-width: 1024px) { .lp-split__left { width: 45%; flex-shrink: 0; } }

.lp-split__left--creators { text-align: center; }
@media (min-width: 1024px) {
  .lp-split__left--creators { width: 45%; flex-shrink: 0; text-align: left; }
}

.lp-split__right { display: flex; justify-content: center; }
@media (min-width: 1024px) { .lp-split__right { flex: 1; justify-content: flex-end; } }

/* ── Shoppers section — matches WT v1 exactly ── */
.lp-shoppers { padding: 64px 0; background: var(--color-section-alt); }
@media (min-width: 640px)  { .lp-shoppers { padding: 80px 0; } }
@media (min-width: 1024px) { .lp-shoppers { padding: 96px 0; } }

/* Row: col-reverse on mobile → row on desktop (visual LEFT, copy RIGHT) */
.lp-shoppers__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
@media (min-width: 1024px) {
  .lp-shoppers__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}

/* LEFT column — 45% on desktop */
.lp-shoppers__visual {
  text-align: center;
}
@media (min-width: 1024px) {
  .lp-shoppers__visual { width: 45%; flex-shrink: 0; text-align: left; }
}

/* Phone frame + tags wrapper — must be relative to contain absolute children */
.lp-shoppers__mockup-wrap {
  position: relative;
  display: inline-block;   /* shrink-wraps the frame so absolute children anchor correctly */
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .lp-shoppers__mockup-wrap {
    display: block;
    margin: 0;
  }
}

/* Phone-like frame — matches WT v1: w-56 sm:w-64 mx-auto lg:mx-0 aspect-[3/4] rounded-2xl */
.lp-shoppers__frame {
  width: 224px;             /* w-56 = 14rem = 224px */
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);  /* rounded-2xl */
  overflow: hidden;
  border: 2px solid var(--color-border);
  background: var(--color-surface-elevated);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  position: relative;       /* needed for z-index stacking */
  z-index: 1;
}
@media (min-width: 640px) {
  .lp-shoppers__frame { width: 256px; }  /* sm:w-64 = 256px */
}

/* Floating tags
   WT v1: absolute top-8 right-4 sm:right-8 lg:right-auto lg:left-56
   Mobile/tablet: absolute over the frame on the RIGHT side
   Desktop (1024+): absolute to the RIGHT of the frame
*/
.lp-shoppers__tags {
  position: absolute;
  top: 32px;                /* top-8 */
  right: 16px;              /* right-4 on mobile */
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
@media (min-width: 640px) {
  .lp-shoppers__tags { right: 32px; }  /* sm:right-8 */
}
@media (min-width: 1024px) {
  /* lg:right-auto lg:left-56 (14rem = 224px frame width) */
  .lp-shoppers__tags {
    right: auto;
    left: 240px;            /* 224px frame + 16px gap */
  }
}

/* "Shop This Look" badge
   WT v1: absolute bottom-8 left-4 sm:left-8 lg:left-12
*/
.lp-shoppers__badge {
  position: absolute;
  bottom: 32px;             /* bottom-8 */
  left: 16px;               /* left-4 */
  background: rgba(18,20,30,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  z-index: 2;
}
@media (min-width: 640px) {
  .lp-shoppers__badge { left: 32px; }  /* sm:left-8 */
}
@media (min-width: 1024px) {
  .lp-shoppers__badge { left: 48px; }  /* lg:left-12 */
}

/* Mini 4-col grid below frame */
.lp-shoppers__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 256px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .lp-shoppers__grid { margin-left: 0; margin-right: 0; max-width: 280px; }
}

.lp-shoppers__grid-cell {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
}

/* Platform badges row */
.lp-shoppers__platforms {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 1024px) { .lp-shoppers__platforms { justify-content: flex-start; } }

.lp-shoppers__platform-badge {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

/* RIGHT column — 55% on desktop */
.lp-shoppers__copy {
  text-align: center;
}
@media (min-width: 1024px) {
  .lp-shoppers__copy { flex: 1; text-align: left; }
}

.lp-shoppers__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.lp-shoppers__body {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (min-width: 1024px) { .lp-shoppers__body { margin-left: 0; margin-right: 0; } }

.lp-shoppers__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 480px) { .lp-shoppers__actions { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .lp-shoppers__actions { justify-content: flex-start; } }

/* --color-surface-elevated fallback */
:root { --color-surface-elevated: #1A1C28; }

.lp-split__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.lp-split__body {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (min-width: 1024px) { .lp-split__body { margin-left: 0; margin-right: 0; } }

.lp-split__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px)  { .lp-split__actions { flex-direction: row; } }
@media (min-width: 1024px) { .lp-split__actions { justify-content: flex-start; } }

.lp-split__proof { margin-top: 16px; font-size: 0.75rem; color: var(--color-text-secondary); margin-bottom: 0; }

.lp-shoppers__proof { margin-top: 12px; font-size: 0.75rem; font-weight: 600; color: var(--color-gold-accent); margin-bottom: 0; }

/* Feature bullet list */
.lp-feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  text-align: left;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .lp-feature-list { margin-left: 0; margin-right: 0; } }

.lp-feature-list li { display: flex; align-items: center; gap: 12px; }
.lp-feature-list__icon { color: var(--color-gold-accent); flex-shrink: 0; font-size: 0.75rem; }

/* Dashboard mockup card */
.lp-dashboard-card {
  width: 100%;
  max-width: 512px;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 20px var(--color-gold-glow), inset 0 1px 0 var(--color-gold-glow);
  border-radius: 8px;
  padding: 20px;
  background: var(--color-surface);
}

.lp-dashboard-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }

.lp-dashboard-card__heading { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--color-text-primary); }

.lp-dashboard-card__creator { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

.lp-dashboard-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.lp-dashboard-card__creator-name { font-size: 0.875rem; font-weight: 500; color: var(--color-text-primary); margin-bottom: 0; }
.lp-dashboard-card__creator-sub  { font-size: 0.75rem; color: var(--color-text-secondary); margin-bottom: 0; }

.lp-dashboard-card__badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gold-accent);
  background: rgba(201,169,110,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.lp-dashboard-card__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }

.lp-dashboard-card__stat {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}

.lp-dashboard-card__stat-val { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--color-gold-accent); margin-bottom: 2px; }
.lp-dashboard-card__stat-lbl { font-size: 0.625rem; color: var(--color-text-secondary); margin-bottom: 0; }

.lp-dashboard-card__bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.lp-dashboard-card__chart-wrap,
.lp-dashboard-card__outfit-wrap {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px;
}

.lp-dashboard-card__chart-lbl { font-size: 0.75rem; color: var(--color-text-secondary); margin-bottom: 8px; }

.lp-mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.lp-mini-chart__bar { flex: 1; background: rgba(201,169,110,0.6); border-radius: 2px; }

.lp-dashboard-card__outfit-img {
  height: 64px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

/* Shopper mockup */
.lp-mockup {
  position: relative;
  display: inline-block;
  min-width: 256px;
}

.lp-mockup__frame {
  width: 224px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-border);
  background: var(--color-background);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .lp-mockup__frame { width: 256px; } }

.lp-mockup__tags {
  position: absolute;
  top: 32px;
  left: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
@media (min-width: 640px) { .lp-mockup__tags { left: 272px; } }
@media (max-width: 767px) {
  .lp-mockup__tags { position: static; margin-top: 12px; flex-direction: column; }
}

.lp-tag-pill {
  background: rgba(18,20,30,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  min-width: 175px;
  white-space: nowrap;
}

.lp-tag-pill__dot { width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-tag-pill__name { font-size: 0.75rem; font-weight: 500; color: var(--color-text-primary); margin-bottom: 0; }
.lp-tag-pill__platform { font-size: 0.625rem; color: var(--color-text-secondary); margin-bottom: 0; }

.lp-mockup__badge {
  position: absolute;
  bottom: 32px;
  left: 16px;
  background: rgba(22,22,24,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  z-index: 2;
}

.lp-mini-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .lp-mini-grid { margin-left: 0; } }

.lp-mini-grid__cell {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-background);
  border: 1px solid var(--color-border);
}

.lp-platform-row { margin-top: 16px; display: flex; gap: 8px; max-width: 320px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .lp-platform-row { margin-left: 0; } }

.lp-platform-badge { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }


/* ============================================================
   15. HOMEPAGE — PRICING
   ============================================================ */
.lp-pricing { padding: 64px 0; background: var(--color-background); }
@media (min-width: 640px)  { .lp-pricing { padding: 80px 0; } }
@media (min-width: 1024px) { .lp-pricing { padding: 96px 0; } }

.lp-toggle-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }

.lp-toggle { width: 40px; height: 24px; border-radius: var(--radius-full); background: var(--color-gold-accent); position: relative; flex-shrink: 0; }
.lp-toggle__dot { position: absolute; left: 4px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--color-background); }
.lp-toggle-lbl  { font-size: 0.875rem; color: var(--color-text-secondary); }
.lp-toggle-sep  { font-size: 0.875rem; color: var(--color-text-secondary); }

.lp-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
@media (min-width: 768px) { .lp-pricing-grid { grid-template-columns: repeat(3,1fr); } }

.lp-pricing-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  background: var(--color-surface);
  position: relative;
  display: flex;
  flex-direction: column;
}

.lp-pricing-card--highlighted {
  box-shadow: 0 0 20px var(--color-gold-glow), inset 0 1px 0 var(--color-gold-glow);
}

.lp-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 12px;
  border-radius: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-pricing-card__badge--gold  { background: var(--color-gold-accent); color: var(--color-background); }
.lp-pricing-card__badge--muted { background: var(--color-border); color: var(--color-text-secondary); border: 1px solid var(--color-border); }
.lp-pricing-card__badge--empty { background: transparent; }

.lp-pricing-card__tier { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--color-text-primary); text-align: center; margin-top: 12px; margin-bottom: 0; }
.lp-pricing-card__price-row { text-align: center; margin: 12px 0 20px; }
.lp-pricing-card__price  { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--color-text-primary); }
.lp-pricing-card__period { font-size: 0.875rem; color: var(--color-text-secondary); }

.lp-pricing-card__features { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.lp-pricing-card__features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--color-text-secondary); }

.lp-check { flex-shrink: 0; margin-top: 1px; }
.lp-check--gold  { color: var(--color-gold-accent); }
.lp-check--green { color: #4ade80; }

.lp-pricing-card__cta { display: block; text-align: center; margin-top: 24px; padding: 12px; font-size: 0.875rem; font-weight: 600; border-radius: var(--btn-radius); text-decoration: none; transition: all var(--transition-fast); }
.lp-pricing-card__cta--gold    { background: var(--color-gold-accent); color: var(--color-background); }
.lp-pricing-card__cta--gold:hover { background: var(--color-gold-accent-hover); }
.lp-pricing-card__cta--outline { border: 1px solid var(--color-border); color: var(--color-text-primary); }
.lp-pricing-card__cta--outline:hover { border-color: var(--color-gold-accent); color: var(--color-gold-accent); }

.lp-pricing__trust { text-align: center; font-size: 0.75rem; color: var(--color-text-secondary); margin-top: 32px; margin-bottom: 0; }


/* ============================================================
   16. HOMEPAGE — FOOTER CTA
   ============================================================ */
.lp-footer-cta {
  padding: 64px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  position: relative;
}
.lp-footer-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--color-gold-accent);
}
@media (min-width: 640px)  { .lp-footer-cta { padding: 80px 0; } }
@media (min-width: 1024px) { .lp-footer-cta { padding: 96px 0; } }

.lp-footer-cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.lp-footer-cta__halo  { margin: 0 auto 16px; opacity: 0.7; }

.lp-footer-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.lp-footer-cta__sub  { margin-top: 16px; font-size: 1rem; color: var(--color-text-secondary); margin-bottom: 0; }
.lp-footer-cta__fine { margin-top: 16px; font-size: 0.75rem; color: var(--color-text-secondary); margin-bottom: 0; }

.lp-footer-cta__actions { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 480px) { .lp-footer-cta__actions { flex-direction: row; justify-content: center; } }

.lp-social-proof { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.lp-social-proof__avatars { display: flex; }
.lp-social-proof__avatars > * + * { margin-left: -8px; }
.lp-social-proof__avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--color-background); background: var(--color-border); overflow: hidden; flex-shrink: 0; }
.lp-social-proof__label  { font-size: 0.875rem; color: var(--color-text-secondary); }


/* ============================================================
   17. DASHBOARD — LAYOUT & SIDEBAR
   Matches WT v1 DashboardLayout exactly:
   Desktop: flex h-screen overflow-hidden, sidebar always visible
   Mobile:  sidebar hidden → slides in from left via hamburger
   ============================================================ */

/* Outer shell — height-locked so sidebar never scrolls */
.dashboard-layout {
  display: flex;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

/* ── SIDEBAR (desktop: always visible) ── */
.dashboard-sidebar {
  width: var(--sidebar-width);
  background: var(--color-sidebar-bg);
  border-right: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  /* On mobile: hidden off-screen, revealed by JS */
  transition: transform var(--transition-base);
  z-index: 50;
}

/* Brand row */
.dashboard-sidebar__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.dashboard-sidebar__brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-gold-accent);
  font-weight: 700;
  text-decoration: none;
}

/* Close button — mobile only */
.dashboard-sidebar__close {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 4px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: color var(--transition-fast);
}
.dashboard-sidebar__close:hover { color: var(--color-text-primary); }

/* Storefront quick-link */
.dashboard-sidebar__storefront {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.dashboard-sidebar__storefront:hover {
  color: var(--color-text-primary);
  background: var(--color-sidebar-hover);
}

/* Nav links */
.dashboard-sidebar__nav {
  padding: var(--space-md) var(--space-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashboard-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.dashboard-sidebar__nav a:hover {
  background: var(--color-sidebar-hover);
  color: #fff;
}
.dashboard-sidebar__nav a.active {
  color: var(--color-text-primary);
  background: var(--color-sidebar-hover);
  font-weight: 600;
}

/* Admin link separator */
.dashboard-sidebar__admin-link {
  margin-top: var(--space-md) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: calc(var(--space-md) + 10px) !important;
}

/* Footer: URL + logout */
.dashboard-sidebar__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-sidebar__footer-url {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 6px 8px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.dashboard-sidebar__logout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.dashboard-sidebar__logout:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

/* ── MOBILE TOP BAR ── */
/* Fixed top bar shown only on mobile (hides on md+) */
.dashboard-mobile-bar {
  display: none;           /* hidden on desktop */
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 40;
  height: 52px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0 var(--space-lg);
  align-items: center;
  justify-content: space-between;
}

.dashboard-mobile-bar__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-accent);
  font-weight: 700;
  text-decoration: none;
}

/* Hamburger button */
.hamburger {
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* Sidebar overlay (mobile) */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 45;
}
.sidebar-overlay.active { display: block; }

/* ── MAIN CONTENT ── */
.dashboard-main {
  flex: 1;
  min-width: 0;
  padding: var(--space-xl);
  overflow-y: auto;        /* ONLY content scrolls — sidebar stays fixed */
  overflow-x: hidden;
  background: var(--color-background);
}

.dashboard-page-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}


/* ============================================================
   18. DASHBOARD — STATS CARDS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); margin-bottom: var(--space-xl); }

.stat-card { background: var(--color-stat-card-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-lg); }

.stat-card__label { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: var(--space-sm); }
.stat-card__value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-text-primary); line-height: 1; }
.stat-card__sub   { font-size: 0.8125rem; color: var(--color-text-secondary); margin-top: var(--space-xs); }


/* ============================================================
   19. DASHBOARD — OUTFIT LIST
   ============================================================ */
.outfit-list-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-lg); flex-wrap: wrap; gap: var(--space-md); }
.outfit-list-header__title { font-size: 1.125rem; font-weight: 600; }

.outfit-list-filters { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }

.outfit-list-table { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }

.outfit-list-item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}
.outfit-list-item:last-child { border-bottom: none; }
.outfit-list-item:hover { background: var(--color-background); }

.outfit-list-item__thumb { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--color-border); }
.outfit-list-item__thumb-placeholder { width: 60px; height: 60px; background: var(--color-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); }
.outfit-list-item__title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 2px; }
.outfit-list-item__meta  { font-size: 0.8125rem; color: var(--color-text-secondary); }

.outfit-list-empty { text-align: center; padding: var(--space-2xl); color: var(--color-text-secondary); }
.outfit-list-empty p { margin-bottom: var(--space-lg); }


/* ============================================================
   20. DASHBOARD — OUTFIT FORMS (Create / Edit)
   ============================================================ */
.outfit-form { max-width: 800px; }

.outfit-form__section { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-xl); margin-bottom: var(--space-xl); }

.outfit-form__section-title { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border); }

.image-upload-wrap {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  position: relative;
}
.image-upload-wrap:hover { border-color: var(--color-gold-accent); }
.image-upload-wrap input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.image-upload-preview { max-width: 300px; max-height: 300px; margin: 0 auto var(--space-sm); border-radius: var(--radius-sm); object-fit: contain; }
.image-upload-hint { font-size: 0.875rem; color: var(--color-text-secondary); }

.products-list { display: flex; flex-direction: column; gap: var(--space-md); }

.product-row { background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: var(--space-md); position: relative; }
.product-row__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-md); }
.product-row__num { font-size: 0.8125rem; font-weight: 700; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.06em; }
.product-row__remove { background: none; border: none; color: var(--color-text-muted); cursor: pointer; font-size: 1.25rem; padding: 2px; line-height: 1; transition: color var(--transition-fast); }
.product-row__remove:hover { color: var(--color-error); }
.product-row__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.product-row__grid .form-group:last-child, .product-row__grid .form-group.full-width { grid-column: 1 / -1; }
.product-row__stock { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) 0 0; border-top: 1px solid var(--color-border); margin-top: var(--space-sm); opacity: 0.6; pointer-events: none; }

.add-product-btn { width: 100%; padding: var(--space-md); background: var(--color-background); border: 2px dashed var(--color-border); border-radius: var(--radius-sm); font-size: 0.9375rem; color: var(--color-text-secondary); cursor: pointer; transition: all var(--transition-fast); }
.add-product-btn:hover { border-color: var(--color-gold-accent); color: var(--color-gold-accent); }

.featured-toggle-wrap { display: flex; align-items: flex-start; gap: var(--space-md); padding: var(--space-md); background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius-sm); }
.featured-toggle-wrap__icon { font-size: 1.5rem; flex-shrink: 0; }
.featured-toggle-wrap__text strong { display: block; font-size: 0.9375rem; }
.featured-toggle-wrap__text small  { font-size: 0.8125rem; color: var(--color-text-secondary); }


/* ============================================================
   21. ADMIN PANEL
   ============================================================ */
.admin-section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--color-border); }
.admin-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-lg); margin-bottom: var(--space-lg); }
.admin-card  { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-xl); box-shadow: var(--shadow-sm); }
.admin-card__title { font-size: 1rem; font-weight: 700; margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border); font-family: var(--font-body); color: var(--color-text-primary); }

.color-picker-row { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border); }
.color-picker-row:last-child { border-bottom: none; }
.color-picker-row label { font-size: 0.875rem; color: var(--color-text-primary); }
.color-picker-row input[type="color"] { width: 40px; height: 32px; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); padding: 2px; cursor: pointer; background: none; }

.tag-list  { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }
.tag-item  { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius-full); font-size: 0.8125rem; }
.tag-item__remove { background: none; border: none; cursor: pointer; color: var(--color-text-muted); font-size: 0.875rem; padding: 0; line-height: 1; margin-left: 2px; transition: color var(--transition-fast); }
.tag-item__remove:hover { color: var(--color-error); }
.tag-add-row { display: flex; gap: var(--space-sm); }
.tag-add-row .form-input { flex: 1; }


/* ============================================================
   22. AUTH PAGES
   ============================================================ */
.auth-page { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; background: var(--color-background); padding: var(--space-xl) var(--space-lg); }

.auth-card { width: 100%; max-width: 420px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-xl); box-shadow: var(--shadow-md); }
.auth-card__title    { font-size: 1.5rem; margin-bottom: var(--space-xs); text-align: center; }
.auth-card__subtitle { font-size: 0.9375rem; color: var(--color-text-secondary); text-align: center; margin-bottom: var(--space-xl); }

.auth-divider { display: flex; align-items: center; gap: var(--space-md); margin: var(--space-lg) 0; color: var(--color-text-muted); font-size: 0.875rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }

.auth-footer-link { text-align: center; margin-top: var(--space-lg); font-size: 0.9375rem; color: var(--color-text-secondary); }
.auth-footer-link a { color: var(--color-gold-accent); font-weight: 500; }
.auth-footer-link a:hover { text-decoration: underline; }


/* ============================================================
   23. LEGAL PAGES
   ============================================================ */
.legal-page { max-width: 700px; margin: 0 auto; padding: var(--space-2xl) var(--space-lg); }
.legal-page h1 { margin-bottom: var(--space-sm); }
.legal-page .updated { font-size: 0.875rem; color: var(--color-text-secondary); margin-bottom: var(--space-xl); }
.legal-page h2 { font-size: 1.25rem; margin: var(--space-xl) 0 var(--space-md); }
.legal-page p, .legal-page ul, .legal-page ol { font-size: 0.9375rem; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }
.legal-page ul, .legal-page ol { padding-left: var(--space-lg); }
.legal-page li { list-style: disc; }
.legal-page ol li { list-style: decimal; }


/* ============================================================
   24. STOREFRONT — CREATOR PROFILE HEADER
   Matches WT v1 CreatorProfileHeader.tsx exactly
   ============================================================ */
.sf-profile {
  padding: 32px 0;
}

.sf-profile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .sf-profile__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}

.sf-profile__photo-wrap { flex-shrink: 0; }

.sf-profile__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

@media (min-width: 640px) {
  .sf-profile__photo { width: 96px; height: 96px; }
}

.sf-profile__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sf-profile__photo-placeholder { width: 96px; height: 96px; }
}

.sf-profile__info {
  flex: 1;
  text-align: center;
}

@media (min-width: 640px) {
  .sf-profile__info { text-align: left; }
}

.sf-profile__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.sf-profile__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .sf-profile__socials { justify-content: flex-start; }
}

.sf-profile__social-link {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.sf-profile__social-link:hover { color: var(--color-gold-accent); }

.sf-profile__bio {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.sf-profile__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

@media (min-width: 640px) {
  .sf-profile__stats { justify-content: flex-start; }
}

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

@media (min-width: 640px) {
  .sf-profile__stat { text-align: left; }
}

.sf-profile__stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.sf-profile__stat-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-left: 4px;
}

.sf-profile__edit {
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
}


/* ============================================================
   25. STOREFRONT — CATEGORY FILTER
   Matches WT v1 CategoryFilter.tsx exactly
   ============================================================ */
.sf-content { padding-bottom: 48px; }

.sf-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.sf-filter__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.sf-filter__pill:hover {
  border-color: var(--color-gold-accent);
  color: var(--color-text-primary);
}

.sf-filter__pill--active {
  background: var(--color-gold-accent);
  color: var(--color-background);
  border-color: var(--color-gold-accent);
}


/* ============================================================
   26. STOREFRONT — OUTFIT CARD
   Matches WT v1 OutfitCard.tsx exactly
   ============================================================ */
.sf-grid-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sf-ad-gutter {
  display: none;
  width: 160px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .sf-ad-gutter { display: flex; }
}

.sf-ad-slot {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  width: 100%;
  border: 1px dashed var(--color-border);
  background: var(--color-background);
  padding: 12px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-outfit-grid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sf-no-results { text-align: center; padding: 48px 0; color: var(--color-text-secondary); font-size: 0.9375rem; }

.sf-empty { text-align: center; padding: 64px 0; color: var(--color-text-secondary); }
.sf-empty__icon  { font-size: 3rem; margin-bottom: 16px; }
.sf-empty__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-text-primary); margin-bottom: 8px; }
.sf-empty__body  { margin-bottom: 24px; font-size: 0.9375rem; }

.sf-outfit-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sf-outfit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.08);
}

.sf-outfit-card__inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sf-outfit-card__inner { flex-direction: row; }
}

.sf-outfit-card__image-wrap {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  background: var(--color-border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .sf-outfit-card__image-wrap {
    width: 320px;
    aspect-ratio: 3/4;
  }
}

.sf-outfit-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.sf-outfit-card:hover .sf-outfit-card__image {
  transform: scale(1.04);
}

.sf-outfit-card__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-border);
  font-size: 3rem;
  color: var(--color-text-muted);
}

.sf-outfit-card__category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(26,26,26,0.85);
  color: #fff;
  border-radius: var(--radius-sm);
}

.sf-outfit-card__body {
  flex: 1;
  min-width: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .sf-outfit-card__body { padding: 20px; }
}

.sf-outfit-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.sf-outfit-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.sf-outfit-card__count {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.sf-outfit-card__share {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: auto;
}

.sf-outfit-card__share-input {
  flex: 1;
  min-width: 0;
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  background: var(--color-background);
  border: none;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-outfit-card__share-copy {
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border: none;
  border-left: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.sf-outfit-card__share-copy:hover { color: var(--color-gold-accent); }


/* ============================================================
   27. STOREFRONT — PRODUCT GRID & ITEM
   Matches WT v1 ProductGrid.tsx + ProductItem.tsx exactly
   ============================================================ */
.sf-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 640px) {
  .sf-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .sf-product-grid { grid-template-columns: repeat(5, 1fr); }
}

.sf-product-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-product-card-border);
  background: var(--color-product-card-bg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.sf-product-item:hover {
  border-color: var(--color-product-card-hover);
}

.sf-product-item__image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  background: var(--color-background);
}

.sf-product-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sf-product-item__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  opacity: 0.4;
}

.sf-product-item__name-wrap {
  padding: 6px 8px 2px;
}

.sf-product-item__name {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.sf-product-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 6px 8px;
  margin-top: auto;
}

.sf-product-item__platform {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.sf-product-item__logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}

.sf-product-item__platform-name {
  font-size: 0.625rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sf-product-item__shop-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  font-size: 0.625rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-shop-btn-bg);
  color: var(--color-shop-btn-text);
  transition: background var(--transition-fast);
  white-space: nowrap;
  border-radius: 0;
}

.sf-product-item__shop-btn:hover {
  background: var(--color-shop-btn-hover);
}


/* ============================================================
   28. PLATFORM BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.badge--category {
  background: var(--color-border);
  color: var(--color-text-secondary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  padding: 3px 10px;
}

/* Dashboard category filter pills */
.category-filter__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.category-filter__pill:hover, .category-filter__pill.active {
  background: var(--color-gold-accent);
  color: var(--color-background);
  border-color: var(--color-gold-accent);
}


/* ============================================================
   29. UTILITIES
   ============================================================ */
.hidden          { display: none !important; }
.sr-only         { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.w-full          { width: 100%; }
.block           { display: block; }
.inline-flex     { display: inline-flex; }
.relative        { position: relative; }
.overflow-hidden { overflow: hidden; }

.divider { height: 1px; background: var(--color-border); border: none; margin: var(--space-xl) 0; }

.section    { padding: var(--space-2xl) 0; }
.section--sm { padding: var(--space-xl) 0; }


/* ============================================================
   30. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fade-in-up 0.5s ease forwards; }

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.10s; }
.delay-3 { animation-delay: 0.15s; }
.delay-4 { animation-delay: 0.20s; }
.delay-5 { animation-delay: 0.25s; }


/* ============================================================
   31. RESPONSIVE — TABLET (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  /* Mobile: show top bar */
  .dashboard-mobile-bar { display: flex; }

  /* Sidebar slides in from left */
  .dashboard-sidebar {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    height: calc(100vh - var(--header-height));
    z-index: 50;
    width: 280px;
  }
  .dashboard-sidebar.open { left: 0; }

  /* Show the X close button inside sidebar on mobile */
  .dashboard-sidebar__close { display: flex; }

  /* Push content down to clear the fixed mobile top bar (52px) */
  .dashboard-main {
    padding-top: calc(52px + var(--space-lg));
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .admin-grid { grid-template-columns: 1fr; }
  .product-row__grid { grid-template-columns: 1fr; }

  .sf-outfit-card__image-wrap {
    aspect-ratio: 4/3;
    max-height: 300px;
  }
  .sf-product-grid { grid-template-columns: repeat(2,1fr); }

  .lp-steps { gap: 32px; }
  .lp-stats-bar__item { border-right: none; }
  .lp-collage { gap: 10px; }
  .lp-collage__col--offset { margin-top: 20px; }
}


/* ============================================================
   32. RESPONSIVE — MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container, .container-content, .container-storefront { padding: 0 var(--space-md); }

  .auth-card { padding: var(--space-lg); }

  .outfit-list-item { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; }
  .outfit-list-item__thumb { width: 48px; height: 48px; }

  .sf-profile__stats { gap: 16px; }
  .sf-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .sf-filter::-webkit-scrollbar { display: none; }

  .lp-hero__title { font-size: 2.5rem; }
  .lp-dashboard-card__stats  { grid-template-columns: 1fr; }
  .lp-dashboard-card__bottom { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }

  .site-footer-v2__bottom { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE — LP SECTIONS (max 1023px)
   ============================================================ */
@media (max-width: 1023px) {
  .lp-split__right { justify-content: center; }
  .lp-dashboard-card { max-width: 480px; }
  .lp-mockup__badge { position: static; display: inline-block; margin-top: 12px; }
  .lp-mockup { display: flex; flex-direction: column; align-items: center; }
}
