/* ============================================
   embrace.day — Design System
   OUTSHINE is the character collective only
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --brand-yellow: #FFD43B;
  --brand-yellow-hover: #FCC419;
  --brand-yellow-light: #FFF9DB;
  --brand-violet: #7C3AED;
  --brand-violet-hover: #6D28D9;
  --brand-violet-light: #F3E8FF;

  --canvas: #FEFCF9;
  --white: #FFFFFF;
  --cream: #F8F6F0;
  --light-gray: #F1F0EB;

  --text-primary: #1A1A2E;
  --text-secondary: #5C5C6F;
  --text-tertiary: #9E9EB0;

  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  --border: rgba(26,26,46,0.08);
  --border-active: rgba(26,26,46,0.15);

  --character-color: #7C3AED;
  --character-glow: rgba(124,58,237,0.15);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(26,26,46,0.05);
  --shadow-md: 0 4px 12px rgba(26,26,46,0.08);
  --shadow-lg: 0 8px 24px rgba(26,26,46,0.1);
  --shadow-glow: 0 0 40px var(--character-glow);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  --max-width: 1280px;
  --nav-height: 64px;
}

/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-violet); text-decoration: none; transition: color var(--duration-fast); }
a:hover { color: var(--brand-violet-hover); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Sora', system-ui, sans-serif; color: var(--text-primary); }
h1 { font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.2; letter-spacing: -1px; margin-bottom: var(--space-xl); }
h3 { font-size: 28px; font-weight: 700; line-height: 1.3; letter-spacing: -0.5px; }
h4 { font-size: 20px; font-weight: 700; line-height: 1.4; letter-spacing: -0.2px; }
p { margin-bottom: var(--space-md); }
.body-large { font-size: 18px; line-height: 1.65; }
.body-small { font-size: 14px; line-height: 1.5; }
.caption { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-secondary); }
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-2xl); }
.section { padding: var(--space-3xl) 0; }
.section-cream { background: var(--cream); }
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,252,249,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar-brand { display: flex; align-items: center; gap: var(--space-sm); text-decoration: none; }
.navbar-brand svg { height: 28px; width: auto; }
.navbar-brand span { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: 2px; color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a { color: var(--text-secondary); font-size: 15px; font-weight: 500; transition: color var(--duration-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-right { display: flex; align-items: center; gap: var(--space-md); }
.cart-btn { position: relative; padding: var(--space-sm); }
.cart-btn .badge { position: absolute; top: 0; right: 0; background: var(--brand-yellow); color: var(--text-primary); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lang-select { padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: transparent; font-size: 14px; color: var(--text-secondary); cursor: pointer; }
.nav-hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text-primary); position: relative; transition: var(--duration-normal); }
.nav-hamburger span::before, .nav-hamburger span::after { content: ''; position: absolute; width: 20px; height: 2px; background: var(--text-primary); transition: var(--duration-normal); }
.nav-hamburger span::before { top: -6px; }
.nav-hamburger span::after { top: 6px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.3px;
  padding: 14px 28px; border-radius: var(--radius-md); border: none; cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out); text-decoration: none;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-primary { background: var(--brand-yellow); color: var(--text-primary); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-yellow-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--brand-violet); color: #fff; box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--brand-violet-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-active); }
.btn-ghost:hover { border-color: var(--brand-violet); color: var(--brand-violet); background: var(--brand-violet-light); }
.btn-character { background: var(--character-color); color: #fff; }
.btn-character:hover { filter: brightness(0.9); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* ===== PRODUCT CARD ===== */
.card-product {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--duration-normal) var(--ease-out);
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-product .card-image { aspect-ratio: 1/1; overflow: hidden; background: var(--light-gray); }
.card-product .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.card-product:hover .card-image img { transform: scale(1.05); }
.card-product .card-body { padding: var(--space-lg); }
.card-product .card-character-info { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.card-product .card-character-info .avatar-sm { width: 24px; height: 24px; border-radius: 50%; }
.card-product .card-title { font-size: 16px; font-weight: 600; margin-bottom: var(--space-xs); }
.card-product .card-price { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-md); }

/* ===== CHARACTER CARD ===== */
.card-character {
  background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl);
  text-align: center; position: relative; border: 1px solid var(--border);
  transition: all var(--duration-normal) var(--ease-out); cursor: pointer;
}
.card-character::before {
  content: ''; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--character-glow) 0%, transparent 70%);
  z-index: 0; transition: all var(--duration-slow) var(--ease-out);
}
.card-character:hover::before { width: 160px; height: 160px; }
.card-character:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.card-character .avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto var(--space-md); position: relative; z-index: 1; border: 3px solid var(--character-color); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; }
.card-character .char-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: var(--space-xs); }
.card-character .char-archetype { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== ART CARD ===== */
.card-art { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.card-art img { width: 100%; display: block; transition: transform var(--duration-slow) var(--ease-out); }
.card-art:hover img { transform: scale(1.05); }
.card-art .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-md); background: linear-gradient(transparent, rgba(26,26,46,0.8));
  color: #fff; opacity: 0; transition: opacity var(--duration-normal) var(--ease-out);
}
.card-art:hover .overlay { opacity: 1; }

/* ===== FORM INPUTS ===== */
.input {
  width: 100%; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 16px;
  font-size: 15px; color: var(--text-primary); transition: border-color var(--duration-fast);
}
.input:focus { border-color: var(--brand-violet); outline: none; box-shadow: 0 0 0 3px var(--brand-violet-light); }
.input::placeholder { color: var(--text-tertiary); }
.input-group { display: flex; gap: var(--space-sm); }
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: var(--space-xs); color: var(--text-secondary); }

/* ===== TAGS ===== */
.tag {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border-radius: var(--radius-full); font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.tag-character { background: var(--character-glow); color: var(--character-color); }
.tag-new { background: var(--brand-yellow-light); color: #B8860B; }
.tag-limited { background: #FEE2E2; color: #DC2626; }

/* ===== MUSIC PLAYER ===== */
.music-player {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--space-lg);
  border: 1px solid var(--border); display: flex; align-items: center; gap: var(--space-md);
}
.music-player .album-art { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--light-gray); display: flex; align-items: center; justify-content: center; }
.music-player .track-info { flex: 1; min-width: 0; }
.music-player .track-title { font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-player .track-artist { font-size: 13px; color: var(--text-secondary); }
.music-player .progress-bar { flex: 1; height: 4px; background: var(--light-gray); border-radius: var(--radius-full); overflow: hidden; cursor: pointer; }
.music-player .progress-fill { height: 100%; background: var(--character-color, var(--brand-violet)); border-radius: var(--radius-full); transition: width 100ms linear; }
.music-player .play-btn {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--character-color, var(--brand-violet)); color: white;
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: none;
}
.music-player .time { font-size: 12px; color: var(--text-tertiary); min-width: 40px; text-align: center; }

/* ===== FULL MUSIC PLAYER (music page) ===== */
.music-full-player { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-2xl); border: 1px solid var(--border); margin-bottom: var(--space-xl); }
.music-full-player .album-art-lg { width: 200px; height: 200px; border-radius: var(--radius-lg); background: var(--light-gray); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-lg); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 32px; color: rgba(255,255,255,0.8); }
.music-full-player .controls { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); margin: var(--space-lg) 0; }
.music-full-player .controls button { background: none; border: none; cursor: pointer; color: var(--text-secondary); transition: color var(--duration-fast); }
.music-full-player .controls button:hover { color: var(--text-primary); }
.music-full-player .controls .play-btn-lg { width: 56px; height: 56px; border-radius: 50%; background: var(--character-color, var(--brand-violet)); color: white; display: flex; align-items: center; justify-content: center; }
.music-full-player .progress-container { display: flex; align-items: center; gap: var(--space-md); }
.music-full-player .progress-bar { flex: 1; height: 6px; background: var(--light-gray); border-radius: var(--radius-full); overflow: hidden; cursor: pointer; }
.music-full-player .progress-fill { height: 100%; background: var(--character-color, var(--brand-violet)); border-radius: var(--radius-full); width: 0%; }
.music-full-player .volume-container { display: flex; align-items: center; gap: var(--space-sm); margin-top: var(--space-md); justify-content: center; }
.music-full-player .volume-bar { width: 100px; height: 4px; background: var(--light-gray); border-radius: var(--radius-full); overflow: hidden; cursor: pointer; }
.music-full-player .volume-fill { height: 100%; background: var(--text-tertiary); border-radius: var(--radius-full); width: 70%; }

.track-list { list-style: none; }
.track-item { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-md); border-radius: var(--radius-md); transition: background var(--duration-fast); cursor: pointer; }
.track-item:hover { background: var(--cream); }
.track-item.playing { background: var(--brand-violet-light); }
.track-item .track-num { width: 28px; text-align: center; font-size: 14px; color: var(--text-tertiary); }
.track-item .track-play-icon { display: none; }
.track-item:hover .track-num-text { display: none; }
.track-item:hover .track-play-icon { display: inline; color: var(--brand-violet); }
.track-item.playing .track-num-text { display: none; }
.track-item.playing .track-play-icon { display: inline; color: var(--brand-violet); }
.track-item .track-meta { flex: 1; min-width: 0; }
.track-item .track-name { font-weight: 600; font-size: 15px; }
.track-item .track-char { font-size: 13px; color: var(--text-secondary); }
.track-item .track-duration { font-size: 13px; color: var(--text-tertiary); min-width: 40px; text-align: right; }

/* ===== CART SIDEBAR ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,26,46,0.3); z-index: 199; opacity: 0; pointer-events: none; transition: opacity var(--duration-normal); }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0; width: 400px; max-width: 90vw;
  background: var(--white); box-shadow: -8px 0 32px rgba(26,26,46,0.1);
  z-index: 200; transform: translateX(100%); transition: transform var(--duration-normal) var(--ease-out);
  padding: var(--space-xl); overflow-y: auto; display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar .cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-xl); }
.cart-sidebar .cart-items { flex: 1; overflow-y: auto; }
.cart-sidebar .cart-footer { padding-top: var(--space-lg); border-top: 1px solid var(--border); }
.cart-item { display: flex; gap: var(--space-md); padding: var(--space-md) 0; border-bottom: 1px solid var(--border); }
.cart-item .item-image { width: 64px; height: 64px; border-radius: var(--radius-sm); background: var(--light-gray); flex-shrink: 0; }
.cart-item .item-info { flex: 1; }
.cart-item .item-name { font-weight: 600; font-size: 14px; }
.cart-item .item-price { font-weight: 700; font-size: 15px; }
.cart-item .item-remove { color: var(--text-tertiary); font-size: 13px; cursor: pointer; }
.cart-item .item-remove:hover { color: var(--error); }

/* ===== HERO ===== */
.hero {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--canvas) 0%, var(--cream) 100%);
  padding: var(--space-4xl) var(--space-2xl);
}
.hero h1 { margin-bottom: var(--space-md); }
.hero .subtitle { font-size: 20px; color: var(--text-secondary); margin-bottom: var(--space-xl); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero .hero-ctas { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.hero-carousel { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-carousel .slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 800ms ease;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.7);
}
.hero-carousel .slide.active { opacity: 0.4; }
.hero .hero-content { position: relative; z-index: 1; }

/* ===== CHARACTER PROFILE HERO ===== */
.char-hero {
  min-height: 50vh; display: flex; align-items: flex-end; position: relative;
  background-size: cover; background-position: center; padding: var(--space-3xl) 0;
}
.char-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(26,26,46,0.85) 100%);
}
.char-hero .hero-content { position: relative; z-index: 1; color: #fff; width: 100%; }
.char-hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.char-hero .archetype-tag { color: rgba(255,255,255,0.8); font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: var(--space-sm); }

/* ===== GIFT & PROMO ===== */
.gift-claim { max-width: 600px; margin: var(--space-4xl) auto; text-align: center; }
.gift-preview {
  width: 280px; height: 280px; margin: 0 auto var(--space-xl); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-glow); border: 3px solid var(--brand-yellow);
  background: var(--light-gray); display: flex; align-items: center; justify-content: center;
}
.claim-badge {
  display: inline-flex; align-items: center; gap: var(--space-sm); padding: 8px 20px;
  background: var(--brand-yellow-light); border-radius: var(--radius-full);
  font-weight: 600; font-size: 14px; color: #B8860B; margin-bottom: var(--space-lg);
}
.promo-landing { max-width: 720px; margin: var(--space-3xl) auto; }
.partner-badge {
  display: flex; align-items: center; gap: var(--space-md); padding: var(--space-md) var(--space-lg);
  background: var(--cream); border-radius: var(--radius-lg); margin-bottom: var(--space-xl);
}
.offer-card {
  background: var(--brand-violet); color: white; border-radius: var(--radius-xl);
  padding: var(--space-2xl); text-align: center;
}
.offer-card h2 { color: white; }
.code-display {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; letter-spacing: 4px;
  padding: var(--space-md) var(--space-xl); background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md); display: inline-block; margin: var(--space-lg) 0;
}

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--cream); padding: var(--space-3xl) 0; text-align: center; }
.newsletter h3 { margin-bottom: var(--space-lg); max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: var(--space-sm); max-width: 480px; margin: 0 auto; }
.newsletter-form .input { flex: 1; }

/* ===== FOOTER ===== */
.footer { background: var(--text-primary); color: rgba(255,255,255,0.7); padding: var(--space-3xl) 0; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-brand .footer-logo { margin-bottom: var(--space-md); }
.footer-brand .footer-tagline { font-size: 14px; opacity: 0.6; }
.footer-links h4 { color: #fff; font-size: 14px; margin-bottom: var(--space-md); }
.footer-links a { display: block; font-size: 14px; padding: 4px 0; }
.footer-socials { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background var(--duration-fast); }
.footer-socials a:hover { background: var(--brand-yellow); color: var(--text-primary); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-lg); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom .powered { opacity: 0.4; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 160ms; }
.stagger-3 { transition-delay: 240ms; }
.stagger-4 { transition-delay: 320ms; }

@keyframes glow-pulse {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.2; }
}
.glow-ambient { animation: glow-pulse 3s ease-in-out infinite; }

/* ===== CHARACTER CAROUSEL ===== */
.char-carousel {
  display: flex; gap: var(--space-lg); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: var(--space-md) 0; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.char-carousel::-webkit-scrollbar { display: none; }
.char-carousel .card-character { min-width: 200px; scroll-snap-align: start; flex-shrink: 0; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(26,26,46,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--duration-normal);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox .close-btn {
  position: absolute; top: var(--space-lg); right: var(--space-lg);
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px; cursor: pointer; border: none;
}
.lightbox .art-info {
  position: absolute; bottom: var(--space-xl); left: 50%; transform: translateX(-50%);
  background: rgba(26,26,46,0.8); color: #fff; padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg); text-align: center;
}

/* ===== PLACEHOLDER ART ===== */
.placeholder-art {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 24px; color: rgba(255,255,255,0.8);
  position: relative; overflow: hidden;
}
.placeholder-art::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 40px);
}
.placeholder-avatar {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; letter-spacing: 1px;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 250; background: rgba(26,26,46,0.5); opacity: 0; pointer-events: none; transition: opacity var(--duration-normal); display: flex; align-items: center; justify-content: center; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-content { background: var(--white); border-radius: var(--radius-xl); max-width: 800px; width: 90vw; max-height: 90vh; overflow-y: auto; display: flex; }
.modal-content .modal-image { flex: 0 0 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; border-radius: var(--radius-xl) 0 0 var(--radius-xl); min-height: 400px; }
.modal-content .modal-details { flex: 1; padding: var(--space-2xl); }
.modal-content .modal-close { position: absolute; top: var(--space-md); right: var(--space-md); width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; z-index: 1; }

/* ===== DROPS ===== */
.drop-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); }
.drop-card .drop-image { aspect-ratio: 16/9; background: var(--light-gray); display: flex; align-items: center; justify-content: center; }
.drop-card .drop-body { padding: var(--space-xl); }
.drop-card .drop-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: var(--space-sm); }
.countdown { display: flex; gap: var(--space-md); justify-content: center; margin: var(--space-lg) 0; }
.countdown .count-unit { text-align: center; }
.countdown .count-num { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--brand-violet); display: block; }
.countdown .count-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-tertiary); }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap; margin-bottom: var(--space-xl); padding: var(--space-md) 0; }
.filter-bar select { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--white); font-size: 14px; color: var(--text-secondary); cursor: pointer; }
.filter-bar select:focus { border-color: var(--brand-violet); outline: none; }
.filter-pill { padding: 6px 16px; border-radius: var(--radius-full); border: 1.5px solid var(--border); background: var(--white); font-size: 13px; font-weight: 500; cursor: pointer; transition: all var(--duration-fast); }
.filter-pill:hover, .filter-pill.active { border-color: var(--brand-violet); background: var(--brand-violet-light); color: var(--brand-violet); }

/* ===== MASONRY GALLERY ===== */
.masonry { column-count: 4; column-gap: var(--space-md); }
.masonry .card-art { break-inside: avoid; margin-bottom: var(--space-md); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg) 0; cursor: pointer; font-weight: 600; font-size: 16px; }
.faq-question::after { content: '+'; font-size: 24px; color: var(--text-tertiary); transition: transform var(--duration-fast); }
.faq-item.open .faq-question::after { content: '-'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--duration-normal) var(--ease-out); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-bottom: var(--space-lg); color: var(--text-secondary); }

/* ===== STEPS ===== */
.steps { display: flex; gap: var(--space-xl); }
.step { flex: 1; text-align: center; padding: var(--space-xl); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-yellow); color: var(--text-primary); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-md); }
.step h4 { margin-bottom: var(--space-sm); }

/* ===== SUCCESS STATE ===== */
.success-state { text-align: center; padding: var(--space-3xl) 0; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--success); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-xl); font-size: 36px; }

/* ===== IDENTITY / BRAND GUIDE ===== */
.identity-gate { max-width: 400px; margin: var(--space-4xl) auto; text-align: center; }
.brand-guide { display: none; }
.brand-guide.visible { display: block; }
.color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--space-md); }
.color-swatch { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.color-swatch .swatch-fill { height: 80px; }
.color-swatch .swatch-info { padding: var(--space-sm) var(--space-md); font-size: 13px; }
.color-swatch .swatch-info strong { display: block; margin-bottom: 2px; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 720px; margin: var(--space-3xl) auto; }
.legal-content h1 { margin-bottom: var(--space-xl); }
.legal-content h2 { font-size: 24px; margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.legal-content p, .legal-content li { color: var(--text-secondary); line-height: 1.7; }
.legal-content ul { padding-left: var(--space-lg); list-style: disc; margin-bottom: var(--space-md); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .nav-links { position: fixed; right: 0; top: 0; bottom: 0; width: 280px; background: var(--white); flex-direction: column; padding: var(--space-3xl) var(--space-xl); transform: translateX(100%); transition: transform var(--duration-normal) var(--ease-out); box-shadow: -4px 0 24px rgba(26,26,46,0.1); z-index: 150; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; padding: var(--space-sm) 0; }
  .nav-hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-content { flex-direction: column; }
  .modal-content .modal-image { border-radius: var(--radius-xl) var(--radius-xl) 0 0; min-height: 250px; }
  .masonry { column-count: 3; }
  .steps { flex-direction: column; }
}
@media (max-width: 767px) {
  h1 { font-size: 36px; letter-spacing: -1px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .container { padding: 0 var(--space-lg); }
  .section { padding: var(--space-2xl) 0; }
  .hero { min-height: 60vh; padding: var(--space-3xl) var(--space-lg); }
  .hero .subtitle { font-size: 16px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .cart-sidebar { width: 100%; max-width: 100%; }
  .char-hero { min-height: 35vh; }
  .masonry { column-count: 2; }
  .countdown .count-num { font-size: 24px; }
}
@media (max-width: 479px) {
  h1 { font-size: 28px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 24px; }
  .masonry { column-count: 1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
