/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0f1b2d;
  --navy-mid: #1a2d4a;
  --navy-light: #243b5e;
  --gold: #f0b429;
  --gold-light: #f7d070;
  --gold-pale: #fef3c7;
  --red: #e63946;
  --red-light: #fff1f2;
  --blue: #3674c9;
  --blue-light: #eff6ff;
  --fun-red: #e63946;
  --fun-blue: #3674c9;
  --fun-yellow: #f5c518;
  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Fredoka', 'Inter', sans-serif;
  line-height: 1.15;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 600; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #daa520;
  border-color: #daa520;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-cart {
  background: var(--fun-blue);
  color: var(--white);
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-color: var(--fun-blue);
  border-radius: var(--radius);
}
.btn-cart:hover {
  background: #2d63a8;
  border-color: #2d63a8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(54, 116, 201, 0.35);
}
.btn-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn svg { width: 18px; height: 18px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--fun-red), var(--fun-blue) 50%, var(--fun-red));
  background-size: 200% 100%;
  animation: shimmer 6s ease infinite;
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.announcement-bar strong {
  color: var(--fun-yellow);
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== HEADER ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.header-scrolled {
  position: fixed;
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header.header-scrolled .nav-logo img {
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 40px;
}

.nav-logo img {
  height: 120px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,0.85);
}
.nav-cart:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.nav-cart svg { width: 22px; height: 22px; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* ---------- collage background ---------- */
.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.hero-collage-item {
  overflow: hidden;
  position: relative;
}
.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 10s ease;
}

/* subtle Ken Burns drift on load */
.hero-collage-item:nth-child(odd) img { transform: scale(1.06); }
.hero-collage-item:nth-child(even) img { transform: scale(1.03); }
.hero:hover .hero-collage-item:nth-child(odd) img  { transform: scale(1.12); }
.hero:hover .hero-collage-item:nth-child(even) img { transform: scale(1.0); }

/* 6-tile mosaic layout:
   ┌──────┬──────┬──────┬──────┐
   │  1   │  2   │  3   │      │
   │(tall)│      │      │  5   │
   ├──────┤  4 (wide)   │(tall)│
   │  6   │             │      │
   └──────┴─────────────┴──────┘  */
.item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }  /* Stitch lifestyle */
.item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }  /* Cars boy */
.item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }  /* Bluey clogs */
.item-4 { grid-column: 2 / 4; grid-row: 2 / 3; }  /* Chuckie poolside – wide */
.item-5 { grid-column: 4 / 5; grid-row: 1 / 3; }  /* Cars bedroom – tall right */
.item-6 { grid-column: 1 / 2; grid-row: 2 / 3; }  /* McQueen product */

/* product-on-white tiles get a colorful bg so they don't look blank */
.item-3 { background: #fce4ec; }  /* pink for Bluey */
.item-6 { background: #fee2e2; }  /* red-ish for Cars */
.item-3 img,
.item-6 img {
  object-fit: contain;
  padding: 8%;
}

/* ---------- dark overlay for text readability ---------- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(15,27,45,0.88) 0%, rgba(15,27,45,0.7) 60%, rgba(15,27,45,0.5) 100%);
  z-index: 1;
}

/* ---------- centered text ---------- */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.15);
  color: var(--gold-light);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  border: 1px solid rgba(240, 180, 41, 0.25);
  text-transform: uppercase;
}
.hero-badge svg { width: 15px; height: 15px; }

.hero-center h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-center h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  justify-content: center;
}

.hero-stat h4 {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.hero-stat p {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fun-red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--fun-red);
  border-radius: 1px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== CHARACTERS / BRANDS ===== */
.characters {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.character-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.character-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--fun-blue);
}

.character-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-50);
}

.character-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.character-card:hover .character-img img {
  transform: scale(1.08);
}

.character-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 14px 12px;
  position: relative;
  z-index: 1;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--fun-red);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-info {
  padding: 20px;
  border-top: 1px solid var(--gray-100);
}

.product-info h3 {
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-category {
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.product-price .current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  font-family: 'Inter', sans-serif;
}
.product-price .original {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-price .save {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ===== LIFESTYLE BANNER ===== */
.lifestyle-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.lifestyle-text {
  padding: 80px 80px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.lifestyle-text .section-label {
  color: var(--gold);
}
.lifestyle-text .section-label::before {
  background: var(--gold);
}

.lifestyle-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.lifestyle-text h2 .highlight {
  color: var(--gold);
}

.lifestyle-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.8;
}

.lifestyle-image {
  position: relative;
  overflow: hidden;
}
.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 30%);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-align: left;
}
.feature-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card:nth-child(1) .feature-icon { background: rgba(54,116,201,0.1); color: var(--fun-blue); }
.feature-card:nth-child(2) .feature-icon { background: rgba(230,57,70,0.08); color: var(--fun-red); }
.feature-card:nth-child(3) .feature-icon { background: rgba(245,197,24,0.12); color: #b8860b; }
.feature-card:nth-child(4) .feature-icon { background: rgba(168,85,247,0.08); color: #a855f7; }

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== PARTNER LOGOS BAR ===== */
.social-proof {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 40px 0;
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 24px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  flex-shrink: 0;
}

.logo-item img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.logo-item:hover img {
  transform: scale(1.05);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 100px 0;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 10% 20%, rgba(230, 57, 70, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(54, 116, 201, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(245, 197, 24, 0.08) 0%, transparent 50%);
}

.newsletter-card > * { position: relative; z-index: 1; }

.newsletter h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-form button {
  padding: 15px 28px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray-400);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  padding: 5px 0;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gray-500);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gray-300); }

/* ===== CART DRAWER ===== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active { right: 0; }

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h3 {
  font-size: 1.1rem;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-400);
  background: none;
  border: none;
  font-size: 1.5rem;
  transition: var(--transition);
}
.cart-close:hover {
  background: var(--gray-50);
  color: var(--gray-700);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}
.cart-empty .cart-empty-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cart-empty .cart-empty-icon svg { width: 28px; height: 28px; color: var(--gray-300); }
.cart-empty p { font-size: 0.9rem; }
.cart-empty .cart-empty-sub { font-size: 0.82rem; margin-top: 6px; color: var(--gray-400); }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  padding: 4px;
}

.cart-item-info { flex: 1; }
.cart-item-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.cart-item-size {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.cart-item-price {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.9rem;
  margin-top: 4px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.cart-item-qty button:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}
.cart-item-qty span {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
}
.btn-checkout {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-checkout:hover {
  background: #daa520;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.4);
}

/* ===== SIZE MODAL ===== */
.size-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.size-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.size-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-2xl);
  transform: translateY(16px) scale(0.98);
  transition: var(--transition);
}
.size-modal-overlay.active .size-modal {
  transform: translateY(0) scale(1);
}
.size-modal h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.size-option {
  padding: 12px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  color: var(--gray-700);
}
.size-option:hover {
  border-color: var(--fun-blue);
}
.size-option.selected {
  border-color: var(--fun-blue);
  background: var(--fun-blue);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { min-height: 80vh; }
  .hero-collage { grid-template-columns: 1fr 1fr 1fr; }
  .item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .item-4 { grid-column: 1 / 3; grid-row: 2 / 3; }
  .item-5 { grid-column: 3 / 4; grid-row: 1 / 3; }
  .item-3, .item-6 { display: none; }
  .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-text { padding: 60px 0; text-align: center; }
  .lifestyle-text p { margin-left: auto; margin-right: auto; max-width: 520px; }
  .lifestyle-image { height: 360px; }
  .lifestyle-image::after { background: linear-gradient(180deg, var(--navy) 0%, transparent 30%); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-logo img { height: 90px; }
  .header.header-scrolled .nav-logo img { height: 50px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: var(--shadow-2xl);
    border-left: 1px solid var(--gray-200);
    z-index: 100;
  }
  .nav-links.active { right: 0; }
  .nav-links a {
    color: var(--gray-700);
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
  }
  .nav-toggle { display: flex; }

  .hero { min-height: 75vh; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .item-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
  .item-5 { grid-column: 2 / 3; grid-row: 1 / 3; }
  .item-2, .item-3, .item-4, .item-6 { display: none; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .btn-lg { padding: 14px 32px; font-size: 0.925rem; }

  .character-grid { grid-template-columns: repeat(3, 1fr); }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .newsletter-card { padding: 48px 24px; }
  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 85vh; }
  .hero-collage { grid-template-columns: 1fr; }
  .item-1 { grid-column: 1; grid-row: 1 / 3; }
  .item-2, .item-3, .item-4, .item-5, .item-6 { display: none; }
  .hero-center h1 { font-size: 2.2rem; }

  .character-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .logos-grid { gap: 20px; }
  .logo-item img { height: 45px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
