  :root {
    --brand: #e84444;
    --brand-dark: #c02e2e;
    --brand-light: #fff0f0;
    --accent: #f5a623;
    --dark: #1a1a2e;
    --mid: #2d2d44;
    --text: #333348;
    --muted: #888;
    --light: #f8f8fc;
    --white: #ffffff;
    --border: #e8e8f0;
    --nav-h: 64px;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-hover: 0 8px 36px rgba(0,0,0,0.17);
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }
  ul { list-style: none; }

  /* ── NAV ── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
  }
  .nav-logo svg { width: 36px; height: 36px; }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .nav-logo-text span { color: var(--brand); }

  .nav-desktop { display: flex; align-items: center; gap: 28px; }
  .nav-desktop a {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
    white-space: nowrap;
  }
  .nav-desktop a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--brand);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--brand-dark) !important; }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none; border: none;
    z-index: 1002;
  }
  .nav-hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
    display: block;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    padding: 28px 24px;
    gap: 6px;
    overflow-y: auto;
    animation: slideDown .25s ease;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 10px;
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-overlay {
    display: none;
    position: fixed; inset: 0;
    z-index: 998;
    background: transparent;
  }
  .mobile-overlay.open { display: block; }

  @keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

  /* ── PAGE BODY ── */
  .page { padding-top: var(--nav-h); }

  /* ── BANNER / HERO SLIDER ── */
  .hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    height: 320px;
  }
  .slides { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); height: 100%; }
  .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .slide-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .slide-pattern {
    position: absolute; inset: 0;
    opacity: .12;
  }
  .slide-content {
    position: relative; z-index: 2;
    text-align: center; padding: 24px;
    max-width: 680px;
  }
  .slide-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 100px;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .slide-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .slide-sub {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    margin-bottom: 28px;
  }
  .slide-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-hero {
    padding: 13px 28px; border-radius: 8px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary { background: var(--brand); color: var(--white); border: none; }
  .btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  .hero-nav {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
  }
  .hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer; transition: all .2s;
    border: none;
  }
  .hero-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

  .hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
    z-index: 10; backdrop-filter: blur(4px);
  }
  .hero-arrow:hover { background: rgba(255,255,255,0.22); }
  .hero-arrow.prev { left: 18px; }
  .hero-arrow.next { right: 18px; }

  /* ── QUICK CATS ── */
  .quick-cats {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }
  .qc-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; gap: 12px;
    overflow-x: auto; scrollbar-width: none;
    padding-bottom: 4px;
  }
  .qc-inner::-webkit-scrollbar { display: none; }
  .qc-item {
    flex-shrink: 0;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
    min-width: 90px;
  }
  .qc-item:hover { border-color: var(--brand); background: var(--brand-light); }
  .qc-item svg { width: 28px; height: 28px; }
  .qc-item span { font-size: 12px; font-weight: 500; color: var(--text); white-space: nowrap; }

  /* ── SECTION SHELL ── */
  .section { padding: 60px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 12px; flex-wrap: wrap; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--brand);
    margin-bottom: 4px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
  }
  .section-view-all {
    font-size: 13px; font-weight: 600; color: var(--brand);
    display: flex; align-items: center; gap: 4px;
    white-space: nowrap;
    border: 1.5px solid var(--brand);
    padding: 7px 16px; border-radius: 6px;
    transition: all .2s;
  }
  .section-view-all:hover { background: var(--brand); color: var(--white); }

  /* ── PRODUCT GRID ── */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex; flex-direction: column;
    position: relative;
  }
  .product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
  .product-img {
    aspect-ratio: 3/4;
    background: var(--light);
    overflow: hidden;
    position: relative;
  }
  .product-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
    background: linear-gradient(135deg, var(--light) 0%, #e8e8f4 100%);
  }
  .product-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--brand); color: var(--white);
    font-size: 11px; font-weight: 700;
    padding: 3px 9px; border-radius: 4px;
    letter-spacing: .04em;
  }
  .product-badge.sale { background: var(--accent); color: var(--dark); }
  .product-wishlist {
    position: absolute; top: 8px; right: 8px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; opacity: 0;
  }
  .product-card:hover .product-wishlist { opacity: 1; }
  .product-wishlist:hover { background: var(--brand-light); }
  .product-body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .product-brand { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
  .product-name { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.35; flex: 1; }
  .product-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); }
  .stars { color: var(--accent); font-size: 12px; }
  .product-price { display: flex; align-items: baseline; gap: 7px; }
  .price-now { font-size: 17px; font-weight: 700; color: var(--dark); }
  .price-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
  .price-off { font-size: 12px; font-weight: 700; color: #1a9b54; }
  .product-cta {
    width: 100%; padding: 10px;
    background: var(--dark); color: var(--white);
    border: none; border-top: 1px solid var(--border);
    font-size: 13px; font-weight: 600;
    cursor: pointer; transition: background .2s;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .product-cta:hover { background: var(--brand); }

  /* ── BIG FEATURE BANNERS ── */
  .feature-banners {
    background: var(--light);
    padding: 50px 24px;
  }
  .fb-inner { max-width: 1200px; margin: 0 auto; }
  .fb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .fb-card {
    border-radius: 14px; overflow: hidden;
    position: relative; min-height: 220px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
    cursor: pointer;
    transition: transform .2s;
  }
  .fb-card:hover { transform: scale(1.02); }
  .fb-card-bg { position: absolute; inset: 0; }
  .fb-card-content { position: relative; z-index: 1; }
  .fb-card-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
  .fb-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
  .fb-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 6px;
    font-size: 13px; font-weight: 700;
    transition: all .2s;
  }

  /* Men banner */
  .fb-men .fb-card-bg { background: linear-gradient(135deg, #1a1a2e 60%, #e84444 100%); }
  .fb-men .fb-card-tag { color: var(--accent); }
  .fb-men .fb-card-title { color: var(--white); }
  .fb-men .fb-btn { background: var(--white); color: var(--dark); }
  .fb-men .fb-btn:hover { background: var(--accent); }

  /* Women banner */
  .fb-women .fb-card-bg { background: linear-gradient(135deg, #6b21a8 60%, #ec4899 100%); }
  .fb-women .fb-card-tag { color: #fde68a; }
  .fb-women .fb-card-title { color: var(--white); }
  .fb-women .fb-btn { background: var(--white); color: #6b21a8; }
  .fb-women .fb-btn:hover { background: #fde68a; }

  /* Baby banner */
  .fb-baby .fb-card-bg { background: linear-gradient(135deg, #0ea5e9 60%, #22d3ee 100%); }
  .fb-baby .fb-card-tag { color: #fef9c3; }
  .fb-baby .fb-card-title { color: var(--white); }
  .fb-baby .fb-btn { background: var(--white); color: #0ea5e9; }
  .fb-baby .fb-btn:hover { background: #fef9c3; }

  /* ── WHY US ── */
  .why-us {
    background: var(--dark);
    padding: 52px 24px;
  }
  .wu-inner { max-width: 1200px; margin: 0 auto; }
  .wu-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900; color: var(--white);
    text-align: center; margin-bottom: 40px;
  }
  .wu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
  .wu-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px; padding: 28px 20px;
    text-align: center;
    transition: background .2s;
  }
  .wu-card:hover { background: rgba(255,255,255,0.10); }
  .wu-icon { font-size: 36px; margin-bottom: 14px; }
  .wu-card-title { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .wu-card-text { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--brand);
    padding: 28px 24px;
  }
  .ss-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px;
  }
  .stat { text-align: center; }
  .stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--white); }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 2px; }

  /* ── FOOTER ── */
  footer {
    background: #0f0f1a;
    color: rgba(255,255,255,0.65);
    padding: 56px 24px 28px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
  }
  .footer-brand { }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--white); }
  .footer-logo-text span { color: var(--brand); }
  .footer-about { font-size: 13px; line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s; color: rgba(255,255,255,0.7);
    font-size: 14px;
  }
  .social-btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
  .footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { display: flex; flex-direction: column; gap: 9px; }
  .footer-col a { font-size: 13px; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 12px;
  }
  .footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-bottom-links a { transition: color .2s; }
  .footer-bottom-links a:hover { color: var(--white); }

  /* ── DEAL STRIP ── */
  .deal-strip {
    background: linear-gradient(90deg, var(--brand-dark), var(--brand));
    padding: 14px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .04em;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-desktop { display: none; }
    .nav-hamburger { display: flex; }
    .hero { height: 420px; }
    .fb-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .hero { height: 360px; }
    .slide-title { font-size: 28px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .stats-strip .ss-inner { flex-direction: column; align-items: center; gap: 14px; }
  }
