* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --white: #ffffff;
  --off-white: #f8f8f6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --black: #0a0a0a;
  --accent: #1a1a1a;
  --accent-warm: #c8a96e;
  --accent-light: #f5f0e8;
  --wood: #b8864e;
  --wood-light: #e8d5b0;
  --eco: #4a7c59;
  --tech: #2563eb;
  --glow: #f59e0b;
  --font-main: Inter, system-ui, sans-serif;
  --font-display: Space Grotesk, Inter, sans-serif;
  --nav-h: 72px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); background: var(--white); color: var(--gray-900); cursor: none; overflow-x: hidden; line-height: 1.6; }

.cursor { position: fixed; width: 12px; height: 12px; background: var(--black); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: transform 0.1s, opacity 0.2s; mix-blend-mode: difference; }
.cursor-follower { position: fixed; width: 40px; height: 40px; border: 1.5px solid rgba(0,0,0,0.25); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); transition: all 0.15s cubic-bezier(0.25,0.46,0.45,0.94); }
.cursor.hover { transform: translate(-50%,-50%) scale(2.5); }
.cursor-follower.hover { transform: translate(-50%,-50%) scale(0.5); opacity: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
.navbar.scrolled { border-bottom-color: var(--gray-200); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; gap: 32px; width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-wrap { width: 40px; height: 40px; border-radius: 10px; overflow: hidden; background: #fff; border: 1.5px solid var(--gray-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.logo-img { width: 36px; height: 36px; object-fit: contain; display: block; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--black); letter-spacing: -0.03em; }
.nav-links { display: flex; list-style: none; gap: 8px; margin: 0; margin-left: auto; }
.nav-item { display: block; padding: 8px 16px; text-decoration: none; color: var(--gray-700); font-size: 14px; font-weight: 500; border-radius: 8px; transition: all 0.2s; }
.nav-item:hover { background: var(--gray-100); color: var(--black); }
.nav-cta { padding: 10px 20px; background: var(--black); color: #fff; text-decoration: none; border-radius: 10px; font-size: 14px; font-weight: 600; transition: all 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--gray-700); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 16px 24px 24px; z-index: 999; transform: translateY(-100%); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mob-link { display: block; padding: 12px 16px; text-decoration: none; color: var(--gray-900); font-weight: 500; border-radius: 8px; transition: background 0.2s; }
.mob-link:hover { background: var(--gray-100); }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); position: relative; overflow: hidden; background: var(--white); }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--gray-200) 1px, transparent 1px), linear-gradient(90deg, var(--gray-200) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.4; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--accent-warm); border-radius: 50%; animation: floatParticle linear infinite; opacity: 0; }
@keyframes floatParticle { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.4; } 100% { transform: translateY(-100px) rotate(720deg); opacity: 0; } }
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding-left: max(24px, calc(50vw - 620px)); padding-right: max(24px, calc(50vw - 620px)); }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--accent-light); border: 1px solid var(--wood-light); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--wood); margin-bottom: 28px; }
.badge-dot { width: 7px; height: 7px; background: var(--wood); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-family: var(--font-display); font-size: clamp(48px,6vw,80px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; color: var(--black); margin-bottom: 24px; }
.hero-accent { color: var(--accent-warm); }
.hero-sub { font-size: 18px; color: var(--gray-500); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; align-items: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--black); color: #fff; text-decoration: none; border-radius: 12px; font-size: 15px; font-weight: 600; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); border: none; cursor: pointer; }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: transparent; color: var(--gray-700); text-decoration: none; border-radius: 12px; font-size: 15px; font-weight: 500; border: 1.5px solid var(--gray-300); transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--black); color: var(--black); background: var(--gray-50); }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
.stat-label { font-size: 12px; color: var(--gray-400); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero-img-frame { position: relative; width: 440px; height: 440px; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
.hero-img-glow { position: absolute; inset: 0; background: radial-gradient(circle at 60% 60%, rgba(200,169,110,0.15), transparent 70%); }
.hero-floating-badge { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--gray-900); box-shadow: var(--shadow); animation: badgeFloat 4s ease-in-out infinite; }
.hero-floating-badge svg { width: 16px; height: 16px; }
.badge-tr { top: 20px; right: -20px; animation-delay: 1s; }
.badge-bl { bottom: 40px; left: -20px; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gray-400), transparent); animation: scrollDown 2s ease-in-out infinite; }
.hero-scroll-hint span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); }
@keyframes scrollDown { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.6); } }

.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-warm); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 800; letter-spacing: -0.03em; color: var(--black); line-height: 1.1; margin-bottom: 24px; }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 520px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.about-text { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip { padding: 6px 14px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--gray-700); transition: all 0.2s; }
.chip:hover { border-color: var(--accent-warm); color: var(--wood); }
.about-img-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.mosaic-img { border-radius: 16px; overflow: hidden; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.mosaic-img:hover img { transform: scale(1.05); }
.mosaic-a { grid-column: 1/3; height: 240px; }
.mosaic-b { height: 180px; }
.mosaic-c { height: 180px; }

.disclaimer-banner { background: #fffbeb; border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a; padding: 16px 24px; display: flex; align-items: flex-start; gap: 12px; }
.disclaimer-banner svg { width: 20px; height: 20px; flex-shrink: 0; color: #d97706; margin-top: 2px; }
.disclaimer-banner p { font-size: 14px; color: #92400e; line-height: 1.5; max-width: 900px; margin: 0 auto; }

.products { background: var(--white); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.filter-btn { padding: 10px 20px; border: 1.5px solid var(--gray-200); background: transparent; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--gray-700); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); color: #fff; border-color: var(--black); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.product-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 20px; overflow: hidden; transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.product-card:hover .product-overlay { opacity: 1; }
.product-zoom { width: 48px; height: 48px; background: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transform: scale(0.8); transition: transform 0.3s; }
.product-card:hover .product-zoom { transform: scale(1); }
.product-zoom svg { width: 20px; height: 20px; color: var(--black); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-wood { background: #fef3c7; color: #92400e; }
.badge-premium { background: var(--gray-900); color: #fff; }
.badge-eco { background: #dcfce7; color: #15803d; }
.badge-tech { background: #dbeafe; color: #1d4ed8; }
.badge-glow { background: #fff7ed; color: #c2410c; }
.product-info { padding: 20px 20px 22px; }
.product-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 6px; letter-spacing: -0.02em; }
.product-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
.product-price { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; padding: 10px 12px; background: var(--gray-50); border-radius: 10px; border: 1px solid var(--gray-100); }
.price-from { font-size: 11px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.price-main { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; line-height: 1; }
.price-note { font-size: 11px; color: var(--gray-400); line-height: 1.4; margin-top: 2px; }
.price-custom { font-size: 15px !important; color: var(--gray-500) !important; font-style: italic; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag { padding: 4px 10px; background: var(--gray-100); border-radius: 6px; font-size: 11px; font-weight: 500; color: var(--gray-700); }
.product-cta { display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 1.5px solid var(--black); padding-bottom: 2px; transition: all 0.2s; }
.product-cta:hover { color: var(--accent-warm); border-color: var(--accent-warm); }

.funko-spotlight { background: var(--gray-50); }
.spotlight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spotlight-desc { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }
.spotlight-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.spotlight-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-700); }
.spotlight-features li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--eco); }
.accent-line { color: var(--accent-warm); }
.spotlight-img-main { border-radius: 20px; overflow: hidden; margin-bottom: 12px; aspect-ratio: 4/3; }
.spotlight-img-main img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-img-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.spotlight-img-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; transition: transform 0.3s; }
.spotlight-img-grid img:hover { transform: scale(1.05); }
.funko-pricing { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; padding: 20px 24px; background: var(--white); border-radius: 16px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); }
.funko-price-card { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.funko-price-big { flex: 1.2; }
.fp-badge { display: inline-block; padding: 3px 8px; background: var(--black); color: #fff; border-radius: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 4px; width: fit-content; }
.fp-size { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.fp-price { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--black); letter-spacing: -0.04em; }
.funko-price-divider { width: 1px; height: 48px; background: var(--gray-200); flex-shrink: 0; }
.promo-section { background: var(--white); }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.promo-card { position: relative; padding: 32px 28px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 20px; text-align: center; transition: all 0.3s; }
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-featured { border-color: var(--black); background: var(--black); color: #fff; }
.promo-top { border-color: var(--accent-warm); background: var(--accent-light); }
.promo-best { display: inline-block; padding: 4px 10px; background: var(--accent-warm); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.promo-featured .promo-best { background: rgba(255,255,255,0.2); }
.promo-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.promo-icon svg { width: 32px; height: 32px; opacity: 0.4; }
.promo-featured .promo-icon svg { opacity: 0.6; stroke: #fff; }
.promo-qty { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.promo-featured .promo-qty { color: #fff; }
.promo-price { font-family: var(--font-display); font-size: 36px; font-weight: 900; letter-spacing: -0.04em; color: var(--black); margin-bottom: 6px; }
.promo-featured .promo-price { color: #fff; }
.promo-top .promo-price { color: var(--wood); }
.promo-label { font-size: 13px; color: var(--gray-400); }
.promo-featured .promo-label { color: rgba(255,255,255,0.6); }
.promo-saving { position: absolute; top: 16px; right: 16px; padding: 4px 10px; background: var(--eco); color: #fff; border-radius: 100px; font-size: 12px; font-weight: 700; }
.promo-featured .promo-saving { background: rgba(255,255,255,0.2); }
.promo-note { font-size: 13px; color: var(--gray-400); text-align: center; max-width: 500px; margin: 0 auto; line-height: 1.6; }

.process { background: var(--white); }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding: 36px 32px; background: var(--gray-50); border-radius: 20px; position: relative; border: 1px solid var(--gray-100); transition: all 0.3s; }
.step:hover { background: var(--white); box-shadow: var(--shadow); border-color: var(--gray-200); transform: translateY(-4px); }
.step-connector { display: flex; align-items: center; padding: 0 8px; flex-shrink: 0; color: var(--gray-300); margin-top: 60px; }
.step-connector svg { width: 60px; height: 24px; }
.step-num { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--gray-200); letter-spacing: -0.05em; line-height: 1; margin-bottom: 16px; }
.step-icon { width: 52px; height: 52px; background: var(--black); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step-icon svg { width: 24px; height: 24px; stroke: #fff; }
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

.contact { background: var(--off-white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; background: var(--white); border-radius: 28px; padding: 60px; box-shadow: var(--shadow); }
.contact-desc { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 14px; border: 1px solid var(--gray-200); text-decoration: none; color: inherit; transition: all 0.2s; }
.contact-item:hover { border-color: var(--black); background: var(--gray-50); transform: translateX(4px); }
.contact-icon { width: 44px; height: 44px; background: var(--gray-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { display: block; font-size: 12px; color: var(--gray-400); font-weight: 500; margin-bottom: 2px; }
.contact-val { display: block; font-size: 15px; font-weight: 600; color: var(--black); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 12px; font-size: 15px; font-family: var(--font-main); color: var(--gray-900); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; }
.form-disclaimer { font-size: 13px; color: var(--gray-400); display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }
.form-disclaimer svg { flex-shrink: 0; margin-top: 2px; }

.footer { background: var(--black); color: var(--gray-400); padding: 60px 0 32px; }
.footer-inner { display: flex; align-items: flex-start; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.footer-logo-wrap { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
.footer-logo { width: 40px; height: 40px; object-fit: contain; display: block; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); max-width: 480px; text-align: right; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 16px; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 22px; height: 22px; stroke: #fff; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-connector { transform: rotate(90deg); margin: 0 auto; }
  .contact-wrapper { grid-template-columns: 1fr; padding: 36px 24px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  .disclaimer-banner { flex-direction: column; text-align: center; }
  .section-padding { padding: 64px 0; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .spotlight-img-grid { grid-template-columns: repeat(2,1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .funko-pricing { flex-direction: column; gap: 12px; }
  .funko-price-divider { width: 100%; height: 1px; }
}
/* ═══ PRODUCT MODAL ═══ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }

.product-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(0.96); width: 92%; max-width: 960px; max-height: 90vh; background: var(--white); border-radius: 28px; z-index: 2010; display: flex; opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 24px 60px rgba(0,0,0,0.2); overflow: hidden; }
.product-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }

.modal-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gray-500); z-index: 10; transition: all 0.2s; }
.modal-close:hover { background: var(--gray-100); color: var(--black); transform: scale(1.05); }
.modal-close svg { width: 24px; height: 24px; }

.modal-inner { display: flex; width: 100%; height: 100%; max-height: 90vh; overflow-y: auto; }
.modal-left { width: 45%; background: var(--gray-50); padding: 32px; display: flex; flex-direction: column; gap: 16px; border-right: 1px solid var(--gray-100); }
.modal-img-wrap { width: 100%; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--gray-200); }
.modal-main-img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.modal-thumbs::-webkit-scrollbar { display: none; }
.modal-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; opacity: 0.6; }
.modal-thumbs img:hover { opacity: 0.9; }
.modal-thumbs img.active { opacity: 1; border-color: var(--black); }

.modal-right { width: 55%; padding: 48px 40px; display: flex; flex-direction: column; }
.modal-badge { display: inline-block; padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; width: fit-content; margin-bottom: 16px; }
.modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--black); margin-bottom: 28px; line-height: 1.1; letter-spacing: -0.03em; }

.modal-tabs { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 1.5px solid var(--gray-100); padding-bottom: 12px; }
.modal-tab-btn { background: none; border: none; font-size: 15px; font-weight: 600; color: var(--gray-400); padding: 8px 12px; cursor: pointer; transition: color 0.2s; position: relative; }
.modal-tab-btn:hover { color: var(--gray-700); }
.modal-tab-btn.active { color: var(--black); }
.modal-tab-btn.active::after { content: ''; position: absolute; bottom: -13.5px; left: 0; right: 0; height: 2px; background: var(--black); border-radius: 2px 2px 0 0; }

.modal-tab-content { flex: 1; min-height: 120px; }
.tab-panel { display: none; font-size: 15px; color: var(--gray-600); line-height: 1.6; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }

.option-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 16px; border-bottom: 1px solid var(--gray-100); }
.option-row:last-child { border-bottom: none; }
.option-label { font-weight: 600; color: var(--black); font-size: 15px; }
.option-right { text-align: right; display: flex; flex-direction: column; gap: 4px; }
.option-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--black); }
.option-note { font-size: 12px; color: var(--gray-400); }

.modal-cta { margin-top: 32px; display: flex; gap: 16px; padding-top: 24px; border-top: 1px solid var(--gray-100); }
.modal-cta .btn-primary, .modal-cta .btn-ghost { flex: 1; justify-content: center; padding: 14px 20px; font-size: 15px; }
.modal-disclaimer { margin-top: 16px; font-size: 12px; color: var(--gray-400); text-align: center; }

/* Product card hover adjustments */
.card-hover-label { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-weight: 600; font-size: 15px; opacity: 0; transition: opacity 0.3s; z-index: 2; pointer-events: none; }
.card-hover-label svg { width: 20px; height: 20px; stroke: #fff; }
.product-card:hover .card-hover-label { opacity: 1; }
.product-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.price-from-label { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.price-tag { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--black); }
.product-detail-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--gray-700); cursor: pointer; transition: all 0.2s; }
.product-detail-btn svg { width: 18px; height: 18px; color: var(--gray-500); transition: color 0.2s; }
.product-card:hover .product-detail-btn { background: var(--black); color: #fff; border-color: var(--black); }
.product-card:hover .product-detail-btn svg { color: #fff; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .product-modal { width: 95%; flex-direction: column; max-height: 85vh; }
  .modal-inner { flex-direction: column; }
  .modal-left { width: 100%; padding: 24px; border-right: none; border-bottom: 1px solid var(--gray-100); }
  .modal-right { width: 100%; padding: 24px; }
  .modal-cta { flex-direction: column; }
  .modal-img-wrap { max-width: 300px; margin: 0 auto; }
}

/* ═══ CART ICON & SIDEBAR ═══ */
.cart-btn { background: none; border: none; cursor: pointer; position: relative; color: var(--black); display: flex; align-items: center; justify-content: center; padding: 8px; margin-left: 8px; transition: transform 0.2s; }
.cart-btn:hover { transform: scale(1.1); }
.cart-btn svg { width: 24px; height: 24px; stroke: currentColor; }
.cart-badge { position: absolute; top: 0px; right: 0px; background: var(--accent-warm); color: #fff; font-size: 10px; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transform: translate(25%, -25%); border: 2px solid #fff; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 3000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw; background: var(--white); z-index: 3010; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: -10px 0 40px rgba(0,0,0,0.1); }
.cart-sidebar.open { transform: translateX(0); }

.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--gray-100); }
.cart-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--black); }
.cart-close { background: var(--gray-50); border: 1px solid var(--gray-200); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gray-600); transition: all 0.2s; }
.cart-close:hover { background: var(--gray-100); color: var(--black); }
.cart-close svg { width: 20px; height: 20px; }

.cart-items { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.cart-empty { text-align: center; color: var(--gray-400); font-size: 15px; margin-top: 40px; }

.cart-item { display: flex; gap: 16px; border-bottom: 1px solid var(--gray-100); padding-bottom: 20px; }
.cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.cart-item-img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: var(--gray-50); border: 1px solid var(--gray-100); }
.cart-item-details { flex: 1; display: flex; flex-direction: column; }
.cart-item-name { font-weight: 700; font-size: 15px; color: var(--black); margin-bottom: 4px; }
.cart-item-opt { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; line-height: 1.4; }
.cart-item-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.cart-item-price { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.cart-item-remove { font-size: 12px; color: #dc2626; background: none; border: none; cursor: pointer; font-weight: 600; text-decoration: underline; padding: 0; }
.cart-item-remove:hover { color: #991b1b; }

.cart-footer { padding: 24px; border-top: 1px solid var(--gray-100); background: var(--gray-50); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.cart-checkout-btn { width: 100%; justify-content: center; font-size: 16px; padding: 14px; background: var(--black); color: #fff; }

/* Dynamic Options in Modal */
.opt-radio-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.opt-radio-label { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 12px; cursor: pointer; transition: all 0.2s; background: var(--white); }
.opt-radio-label:hover { border-color: var(--gray-400); }
.opt-radio-input { display: none; }
.opt-radio-input:checked + .opt-radio-label { border-color: var(--black); background: var(--gray-50); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.opt-name { font-weight: 600; font-size: 15px; color: var(--black); }
.opt-price { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--black); }

.add-to-cart-btn { background: var(--black); color: #fff; border: none; padding: 14px 24px; width: 100%; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s; }
.add-to-cart-btn:hover { background: #333; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.add-to-cart-btn:active { transform: translateY(0); }
.add-to-cart-btn svg { width: 20px; height: 20px; }

