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

  :root {
    --cream: #F5F0E8;
    --warm-white: #FAF8F4;
    --forest: #2C3D2E;
    --forest-light: #3D5240;
    --sage: #8FAF8A;
    --sage-light: #B5CEB1;
    --terracotta: #C4714A;
    --gold: #B8953A;
    --charcoal: #1C1C1A;
    --mid: #6B6B60;
    --border: rgba(44,61,46,0.12);
    --shadow: 0 4px 40px rgba(28,28,26,0.08);
    --shadow-lg: 0 12px 60px rgba(28,28,26,0.14);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all .3s ease;
  }

  .nav-logo {
    text-decoration: none;
    display: flex; align-items: center;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--mid);
    text-decoration: none; transition: color .2s;
  }

  .nav-links a:hover { color: var(--forest); }

  .nav-right {
    display: flex; align-items: center; gap: 20px;
  }

  .nav-cart {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: var(--forest);
    text-decoration: none; cursor: pointer;
  }

  .cart-badge {
    background: var(--terracotta); color: white;
    border-radius: 50%; width: 18px; height: 18px;
    font-size: 10px; display: flex; align-items: center; justify-content: center;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 72px;
  }

  .hero-left {
    background: var(--forest);
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 72px;
    position: relative; overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(143,175,138,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(143,175,138,0.15);
    border: 1px solid rgba(143,175,138,0.3);
    padding: 6px 14px; border-radius: 100px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--sage-light); margin-bottom: 36px;
    width: fit-content;
  }

  .hero-badge span { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5vw, 80px);
    font-weight: 300; line-height: 1.05;
    color: var(--cream); margin-bottom: 28px;
  }

  .hero-title em { font-style: italic; color: var(--sage-light); }

  .hero-desc {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(245,240,232,0.65); max-width: 380px; margin-bottom: 48px;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--terracotta); color: white;
    padding: 16px 32px; border-radius: 4px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 500; text-decoration: none; border: none; cursor: pointer;
    transition: all .25s ease; width: fit-content;
  }

  .btn-primary:hover { background: #b5613b; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,113,74,0.35); }

  .btn-primary svg { transition: transform .25s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(245,240,232,0.3); color: var(--cream);
    padding: 14px 28px; border-radius: 4px;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 400; text-decoration: none; cursor: pointer;
    transition: all .25s ease; background: transparent;
  }

  .btn-outline:hover { border-color: var(--cream); background: rgba(245,240,232,0.05); }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid rgba(143,175,138,0.2);
  }

  .stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: var(--cream); line-height: 1;
  }

  .stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,232,0.45); margin-top: 4px; }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-room-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }

  .hero-room-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(28,28,26,0.08) 0%,
      rgba(28,28,26,0.02) 40%,
      rgba(28,28,26,0.35) 100%
    );
  }

  .hero-room-badge {
    position: absolute; top: 28px; right: 28px;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(44,61,46,0.15);
    padding: 10px 18px; border-radius: 8px;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--forest); font-weight: 500;
    display: flex; align-items: center; gap: 8px;
  }

  .hero-room-badge span {
    width: 6px; height: 6px;
    background: var(--sage); border-radius: 50%;
  }

  .hero-room-card {
    position: absolute; bottom: 32px; left: 28px; right: 28px;
    background: rgba(250,248,244,0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(44,61,46,0.1);
    padding: 20px 24px; border-radius: 12px;
    box-shadow: 0 8px 40px rgba(28,28,26,0.18);
  }

  .hero-room-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 300; color: var(--charcoal);
    margin-bottom: 6px;
  }

  .hero-room-card-desc {
    font-size: 12px; color: var(--mid); margin-bottom: 14px; font-weight: 300; line-height: 1.6;
  }

  .hero-room-card-footer {
    display: flex; align-items: center; justify-content: space-between;
  }

  .hero-room-color-chips {
    display: flex; gap: 6px;
  }

  .chip {
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer; transition: transform .2s;
  }

  .chip:hover { transform: scale(1.15); }

  .hero-room-cta {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--forest); font-weight: 500; text-decoration: none;
    display: flex; align-items: center; gap: 6px; transition: gap .2s;
  }

  .hero-room-cta:hover { gap: 10px; }

  .hero-product-card {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: white; padding: 16px 20px; border-radius: 8px;
    box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between;
  }

  .hero-product-name { font-size: 13px; font-weight: 500; color: var(--charcoal); }
  .hero-product-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--forest); }

  .hero-paint-can {
    width: 120px; height: 160px;
    background: var(--forest); border-radius: 12px 12px 6px 6px;
    position: relative; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(44,61,46,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    animation: float 4s ease-in-out infinite;
  }

  .hero-paint-can::before {
    content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 10px;
    background: rgba(44,61,46,0.8); border-radius: 10px 10px 0 0;
  }

  .hero-paint-can::after {
    content: 'LEINOS'; position: absolute; font-size: 10px; font-weight: 500;
    letter-spacing: 3px; color: rgba(245,240,232,0.6);
  }

  .paint-can-2 { background: var(--terracotta); animation-delay: 1.5s; }
  .paint-can-3 { background: #4A6B7A; animation-delay: .8s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ── BRAND STRIP ── */
  .brand-strip {
    background: var(--charcoal); padding: 20px 48px;
    display: flex; align-items: center; gap: 60px; overflow: hidden;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(245,240,232,0.4);
  }

  .brand-strip-item { white-space: nowrap; display: flex; align-items: center; gap: 16px; }
  .brand-strip-item::before { content: '◆'; font-size: 6px; color: var(--terracotta); }

  /* ── SECTION HEADERS ── */
  .section { padding: 100px 48px; }

  .section-eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--terracotta); font-weight: 500; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }

  .section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--terracotta); }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.15;
    color: var(--charcoal); margin-bottom: 20px;
  }

  .section-title em { font-style: italic; color: var(--forest); }

  .section-desc { font-size: 15px; line-height: 1.8; color: var(--mid); max-width: 520px; font-weight: 300; }

  /* ── CATEGORIES ── */
  .categories { background: var(--cream); }

  .cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }

  .cat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }

  .cat-card {
    border-radius: 8px; overflow: hidden; position: relative;
    cursor: pointer; group: true;
  }

  .cat-card-inner {
    position: relative; overflow: hidden;
    transition: transform .4s ease;
  }

  .cat-card:hover .cat-card-inner { transform: scale(1.02); }

  .cat-bg {
    height: 360px;
    display: flex; align-items: flex-end;
    padding: 28px; position: relative;
  }

  .cat-bg-1 {
    background: linear-gradient(160deg, #3D5240 0%, #2C3D2E 100%);
    position: relative; overflow: hidden;
  }
  .cat-bg-1 .cat-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .cat-bg-1 .cat-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(28,28,26,0.15) 0%,
      rgba(28,28,26,0.1) 30%,
      rgba(28,28,26,0.55) 100%
    );
  }
  .cat-bg-2 {
    background: linear-gradient(160deg, #7B6B4A 0%, #5A4D35 100%);
    position: relative; overflow: hidden;
  }
  .cat-bg-2 .cat-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .cat-bg-2 .cat-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(28,28,26,0.1) 0%,
      rgba(28,28,26,0.08) 30%,
      rgba(28,28,26,0.6) 100%
    );
  }
  .cat-bg-3 {
    background: linear-gradient(160deg, #4A6B7A 0%, #2E4D5A 100%);
    position: relative; overflow: hidden;
  }
  .cat-bg-3 .cat-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
  }
  .cat-bg-3 .cat-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(44,61,46,0.15) 0%,
      rgba(44,61,46,0.1) 30%,
      rgba(44,61,46,0.65) 100%
    );
  }

  .cat-card:nth-child(1) .cat-bg { height: 440px; }

  .cat-decoration {
    position: absolute; top: 24px; right: 24px;
    width: 80px; height: 80px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
  }

  .cat-info { position: relative; z-index: 2; }

  .cat-tag {
    display: inline-block; background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 10px; border-radius: 100px;
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-bottom: 10px;
  }

  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300; color: white; line-height: 1.2; margin-bottom: 8px;
  }

  .cat-count { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }

  .cat-arrow {
    position: absolute; bottom: 28px; right: 28px;
    width: 36px; height: 36px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; transition: all .25s; font-size: 14px;
  }

  .cat-card:hover .cat-arrow { background: var(--terracotta); border-color: var(--terracotta); }

  /* ── FILTER BAR ── */
  .filter-bar {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 48px; border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden; width: fit-content;
  }

  .filter-btn {
    padding: 12px 24px; border: none; background: white;
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--mid); cursor: pointer; transition: all .2s;
    border-right: 1px solid var(--border); font-family: 'DM Sans', sans-serif;
    font-weight: 500;
  }

  .filter-btn:last-child { border-right: none; }
  .filter-btn.active { background: var(--forest); color: white; }
  .filter-btn:hover:not(.active) { background: var(--cream); color: var(--forest); }

  /* ── PRODUCTS ── */
  .products-section { background: var(--warm-white); }

  .products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }

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

  .product-card {
    background: white; border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border); transition: all .3s ease;
    position: relative;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }

  .product-img {
    height: 220px; background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }

  .product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--terracotta); color: white;
    font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px; font-weight: 500;
  }

  .product-badge.bio { background: var(--forest); }
  .product-badge.pro { background: var(--gold); }

  .product-wishlist {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: 1px solid var(--border);
    font-size: 14px; transition: all .2s;
    opacity: 0;
  }

  .product-card:hover .product-wishlist { opacity: 1; }
  .product-wishlist:hover { background: var(--cream); transform: scale(1.1); }

  /* Paint can illustrations */
  .paint-visual {
    width: 90px; height: 120px; border-radius: 8px 8px 5px 5px;
    position: relative; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform .3s ease;
  }

  .product-card:hover .paint-visual { transform: translateY(-4px) rotate(-2deg); }

  .paint-visual::before {
    content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 7px; background: inherit;
    filter: brightness(0.8); border-radius: 6px 6px 0 0;
  }

  .paint-visual::after {
    content: attr(data-num);
    position: absolute; bottom: 20px; left: 0; right: 0; text-align: center;
    font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
    color: rgba(255,255,255,0.8);
  }

  .pv-green { background: linear-gradient(160deg, #4A6B4A, #2C4A2C); }
  .pv-terra { background: linear-gradient(160deg, #C07050, #8B4030); }
  .pv-blue { background: linear-gradient(160deg, #5A7A9A, #3A5A7A); }
  .pv-white { background: linear-gradient(160deg, #D0C8B8, #B0A898); }
  .pv-gold { background: linear-gradient(160deg, #C8A848, #A88828); }
  .pv-slate { background: linear-gradient(160deg, #6A7A6A, #4A5A4A); }
  .pv-amber { background: linear-gradient(160deg, #C8904A, #A87030); }
  .pv-olive { background: linear-gradient(160deg, #8A9A4A, #6A7A2A); }

  .product-body { padding: 20px; }

  .product-cat {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--sage); margin-bottom: 6px; font-weight: 500;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; color: var(--charcoal);
    margin-bottom: 6px; line-height: 1.3;
  }

  .product-desc { font-size: 12px; color: var(--mid); line-height: 1.6; font-weight: 300; margin-bottom: 16px; }

  .product-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border);
  }

  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: var(--forest);
  }

  .product-price span { font-size: 12px; color: var(--mid); font-family: 'DM Sans', sans-serif; font-weight: 300; margin-left: 4px; }

  .add-btn {
    width: 36px; height: 36px; background: var(--forest); color: white;
    border: none; border-radius: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: all .2s; font-family: 'DM Sans', sans-serif;
  }

  .add-btn:hover { background: var(--terracotta); transform: scale(1.05); }

  /* ── BRAND STORY ── */
  .brand-section {
    background: var(--forest); padding: 100px 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .brand-left { color: var(--cream); }

  .brand-left .section-eyebrow { color: var(--sage-light); }
  .brand-left .section-eyebrow::before { background: var(--sage-light); }

  .brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 3.5vw, 52px); font-weight: 300; line-height: 1.15;
    color: var(--cream); margin-bottom: 24px;
  }

  .brand-title em { font-style: italic; color: var(--sage-light); }

  .brand-text { font-size: 15px; line-height: 1.9; color: rgba(245,240,232,0.65); font-weight: 300; margin-bottom: 16px; }

  .brand-features { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }

  .brand-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px; border: 1px solid rgba(143,175,138,0.2);
    border-radius: 8px; background: rgba(143,175,138,0.05);
  }

  .brand-feature-icon { font-size: 20px; flex-shrink: 0; }

  .brand-feature-title { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
  .brand-feature-desc { font-size: 12px; color: rgba(245,240,232,0.5); line-height: 1.6; }

  .brand-right { position: relative; }

  .brand-visual {
    background: linear-gradient(135deg, rgba(143,175,138,0.15) 0%, rgba(44,61,46,0.8) 100%);
    border: 1px solid rgba(143,175,138,0.2);
    border-radius: 12px; padding: 48px;
    display: flex; flex-direction: column; gap: 20px;
  }

  .brand-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px; font-weight: 300;
    color: rgba(143,175,138,0.2); line-height: 1;
  }

  .brand-cert {
    background: rgba(143,175,138,0.1); border: 1px solid rgba(143,175,138,0.25);
    border-radius: 8px; padding: 20px; text-align: center;
  }

  .brand-cert-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-light); margin-bottom: 8px; }
  .brand-cert-val { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--cream); }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--cream); padding: 100px 48px; }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

  .testi-card {
    background: white; border-radius: 10px; padding: 32px;
    border: 1px solid var(--border); position: relative;
  }

  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; color: var(--sage-light); line-height: 1; margin-bottom: 16px;
  }

  .testi-text { font-size: 14px; line-height: 1.8; color: var(--mid); font-weight: 300; margin-bottom: 24px; font-style: italic; }

  .testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 16px; }

  .testi-author { display: flex; align-items: center; gap: 12px; }

  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 500; color: white;
  }

  .av-1 { background: var(--forest); }
  .av-2 { background: var(--terracotta); }
  .av-3 { background: var(--gold); }

  .testi-name { font-size: 13px; font-weight: 500; color: var(--charcoal); }
  .testi-role { font-size: 11px; color: var(--mid); margin-top: 2px; }

  /* ── NEWSLETTER ── */
  .newsletter {
    background: var(--charcoal); padding: 80px 48px;
    text-align: center;
  }

  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; font-weight: 300; color: var(--cream); margin-bottom: 12px;
  }

  .newsletter-desc { font-size: 14px; color: rgba(245,240,232,0.5); margin-bottom: 36px; font-weight: 300; }

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

  .newsletter-input {
    flex: 1; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.1);
    border-right: none; background: rgba(255,255,255,0.05);
    color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 13px;
    border-radius: 4px 0 0 4px; outline: none;
  }

  .newsletter-input::placeholder { color: rgba(245,240,232,0.3); }
  .newsletter-input:focus { border-color: rgba(143,175,138,0.4); }

  .newsletter-btn {
    padding: 14px 24px; background: var(--terracotta); color: white;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 500; border-radius: 0 4px 4px 0; transition: background .2s;
  }

  .newsletter-btn:hover { background: #b5613b; }

  /* ── FOOTER ── */
  footer {
    background: var(--forest); padding: 60px 48px 30px;
  }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(143,175,138,0.15);
    margin-bottom: 30px;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600; letter-spacing: 4px;
    color: var(--cream); text-transform: uppercase; margin-bottom: 16px;
  }

  .footer-tagline { font-size: 13px; color: rgba(245,240,232,0.45); line-height: 1.7; font-weight: 300; }

  .footer-col-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-light); margin-bottom: 20px; font-weight: 500; }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-links a { font-size: 13px; color: rgba(245,240,232,0.5); text-decoration: none; transition: color .2s; font-weight: 300; }
  .footer-links a:hover { color: var(--cream); }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; color: rgba(245,240,232,0.3); letter-spacing: 0.5px;
  }

  /* ── UTILITY ── */
  .link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 500; text-decoration: none; transition: gap .2s;
  }

  .link-arrow:hover { gap: 12px; }

  .link-forest { color: var(--forest); }
  .link-cream { color: var(--cream); }

  /* ── CART DRAWER ── */
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(28,28,26,0.4);
    z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s;
  }

  .cart-overlay.open { opacity: 1; pointer-events: all; }

  .cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: 400px;
    background: var(--warm-white); z-index: 201;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
  }

  .cart-drawer.open { transform: translateX(0); }

  .cart-drawer-header {
    padding: 24px 28px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }

  .cart-drawer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 300; color: var(--charcoal);
  }

  .cart-close {
    width: 36px; height: 36px; border: 1px solid var(--border);
    background: white; border-radius: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--mid); transition: all .2s;
  }

  .cart-close:hover { background: var(--cream); }

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

  .cart-item {
    display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border);
  }

  .cart-item-img {
    width: 60px; height: 80px; background: var(--cream); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .cart-item-mini {
    width: 28px; height: 40px; border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .cart-item-info { flex: 1; }
  .cart-item-name { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
  .cart-item-variant { font-size: 12px; color: var(--mid); }
  .cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--forest); margin-top: 8px; }

  .cart-item-qty {
    display: flex; align-items: center; gap: 0;
    border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
    margin-top: 8px; width: fit-content;
  }

  .qty-btn {
    width: 28px; height: 28px; border: none; background: white;
    cursor: pointer; font-size: 14px; color: var(--mid);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
  }

  .qty-btn:hover { background: var(--cream); }
  .qty-val { width: 32px; text-align: center; font-size: 13px; font-weight: 500; }

  .cart-footer { padding: 24px 28px; border-top: 1px solid var(--border); }

  .cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .cart-total-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--mid); }
  .cart-total-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--charcoal); }

  .cart-checkout {
    width: 100%; padding: 16px; background: var(--forest); color: white;
    border: none; border-radius: 6px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
    transition: background .2s;
  }

  .cart-checkout:hover { background: var(--forest-light); }

  .cart-empty { text-align: center; padding: 48px 0; color: var(--mid); }
  .cart-empty-icon { font-size: 40px; margin-bottom: 16px; }
  .cart-empty-text { font-size: 14px; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 24px; }
    .section { padding: 60px 20px; }
    .cat-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .brand-section { grid-template-columns: 1fr; padding: 60px 20px; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .cart-drawer { width: 100%; }
    .brand-strip { padding: 20px; gap: 30px; }
    .newsletter { padding: 60px 20px; }
    footer { padding: 60px 20px 30px; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge { animation: fadeUp .6s ease both; }
  .hero-title { animation: fadeUp .7s .1s ease both; }
  .hero-desc { animation: fadeUp .7s .2s ease both; }
  .hero-ctas { animation: fadeUp .7s .3s ease both; }
  .hero-stats { animation: fadeUp .7s .4s ease both; }

  .toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--forest); color: var(--cream); padding: 12px 24px;
    border-radius: 100px; font-size: 13px; font-weight: 500;
    z-index: 300; transition: transform .35s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
  }

  .toast.show { transform: translateX(-50%) translateY(0); }
