/* ── Reset & Tokens ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary:    #8e6f55;
      --primary-dk: #6e5440;
      --primary-lt: #b39a82;
      --bg:         #f2f0ed;
      --bg-card:    #f9f8f6;
      --bg-muted:   #e5e2dc;
      --text:       #1a1816;
      --text-muted: #6e6860;
      --border:     #d1ccc4;
      --white:      #ffffff;
      --shadow-sm:  0 1px 4px rgba(26,24,22,.08);
      --shadow-md:  0 4px 16px rgba(26,24,22,.12);
      --shadow-lg:  0 8px 32px rgba(26,24,22,.16);
      --radius:     6px;
      --radius-lg:  12px;
      --transition: .2s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', serif;
      line-height: 1.2;
      font-weight: 400;
    }

    a { color: inherit; text-decoration: none; }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ── Utility ──────────────────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: .02em;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--primary-dk);
      box-shadow: var(--shadow-md);
      transform: translateY(-1px);
    }
    .btn-primary:active { transform: translateY(0); }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 1.5px solid var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text-muted);
      padding: 8px 12px;
    }
    .btn-ghost:hover { color: var(--text); }

    /* ── Back Bar ─────────────────────────────────────────── */
    .back-bar {
      background: var(--text);
      color: var(--bg-muted);
      font-size: 12px;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 8px 0;
    }
    .back-bar .container {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .back-bar a {
      color: var(--primary-lt);
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color var(--transition);
    }
    .back-bar a:hover { color: var(--white); }

    /* ── Header ───────────────────────────────────────────── */
    .site-header {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .logo {
      display: flex;
      flex-direction: column;
    }
    .logo-name {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--text);
      letter-spacing: -.01em;
    }
    .logo-sub {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-top: 1px;
    }
    .header-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .header-nav a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      transition: color var(--transition);
    }
    .header-nav a:hover { color: var(--primary); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cart-btn {
      position: relative;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      padding: 10px 16px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: background var(--transition);
    }
    .cart-btn:hover { background: var(--primary-dk); }
    .cart-count {
      background: var(--white);
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      border-radius: 100px;
      padding: 1px 6px;
      min-width: 20px;
      text-align: center;
      line-height: 1.6;
    }

    /* hamburger */
    .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(--text);
      border-radius: 2px;
      transition: all var(--transition);
    }

    /* ── Hero ─────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--text);
    }
    .hero-img {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1598371839696-5c5bb1c12015?w=1600');
      background-size: cover;
      background-position: center 40%;
      opacity: .35;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
      padding: 80px 24px;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--primary-lt);
      margin-bottom: 18px;
      font-weight: 500;
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 60px);
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: -.02em;
    }
    .hero p {
      font-size: 17px;
      color: rgba(242,240,237,.8);
      margin-bottom: 36px;
      max-width: 440px;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .hero-badge {
      position: absolute;
      bottom: 32px;
      right: 32px;
      background: var(--bg-card);
      border-radius: 50%;
      width: 110px;
      height: 110px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: var(--shadow-lg);
      z-index: 1;
    }
    .hero-badge span:first-child {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--primary);
      line-height: 1;
    }
    .hero-badge span:last-child {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: .06em;
      text-transform: uppercase;
      max-width: 70px;
      line-height: 1.3;
      margin-top: 4px;
    }

    /* ── Trust Bar ────────────────────────────────────────── */
    .trust-bar {
      background: var(--primary);
      color: var(--white);
      padding: 14px 0;
    }
    .trust-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .02em;
    }
    .trust-icon { font-size: 16px; }

    /* ── Shop Section ─────────────────────────────────────── */
    .shop-section {
      padding: 64px 0 80px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-eyebrow {
      display: inline-block;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .section-header h2 {
      font-size: clamp(28px, 4vw, 40px);
      color: var(--text);
      margin-bottom: 10px;
    }
    .section-header p {
      color: var(--text-muted);
      font-size: 15px;
      max-width: 460px;
      margin: 0 auto;
    }

    /* Filters */
    .filters {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .filter-btn {
      padding: 8px 20px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--bg-card);
      color: var(--text-muted);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all var(--transition);
      letter-spacing: .01em;
    }
    .filter-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .filter-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
    }

    /* Search */
    .search-wrap {
      display: flex; align-items: center; gap: 8px;
      background: var(--bg-card, #faf9f7); border: 1.5px solid var(--border);
      border-radius: 100px; padding: 8px 16px; max-width: 300px;
      margin: 0 auto 24px; transition: border-color var(--transition, .2s ease);
    }
    .search-wrap:focus-within { border-color: var(--primary); }
    .search-wrap svg { flex-shrink: 0; color: var(--text-muted); }
    .search-input {
      border: none; outline: none; background: transparent;
      font-family: inherit; font-size: 14px; color: var(--text); width: 100%;
    }
    .search-input::placeholder { color: var(--text-muted); }

    /* Promo */
    .promo-row { display: flex; gap: 8px; margin: 12px 0 16px; padding: 0 24px; }
    .promo-input { flex: 1; padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius, 6px); font-family: inherit; font-size: 13px; background: var(--bg, #f5f4f2); }
    .promo-input:focus { outline: none; border-color: var(--primary); }
    .promo-btn { padding: 8px 16px; background: var(--primary); color: var(--white, #fff); border: none; border-radius: var(--radius, 6px); font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; }
    .promo-btn:hover { opacity: 0.9; }

    /* Fulfillment toggle */
    .fulfillment-toggle { display: flex; gap: 8px; margin-bottom: 16px; }
    .fulfill-btn { flex: 1; padding: 10px; border: 1.5px solid var(--border); border-radius: var(--radius, 6px); background: var(--bg, #f5f4f2); font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
    .fulfill-btn.active { background: var(--primary); color: var(--white, #fff); border-color: var(--primary); }
    .pickup-info { background: var(--bg-muted, #eae8e5); border-radius: var(--radius, 6px); padding: 12px 16px; margin-bottom: 16px; font-size: 13px; color: var(--text-muted); }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 24px;
    }

    /* Product Card */
    .product-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .product-card.hidden { display: none; }

    .product-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--bg-muted);
    }
    .product-img-wrap img {
      transition: transform .4s ease;
    }
    .product-card:hover .product-img-wrap img {
      transform: scale(1.05);
    }
    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--primary);
      color: var(--white);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 9px;
      border-radius: 100px;
    }

    .product-info {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-category {
      font-size: 10px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 5px;
    }
    .product-name {
      font-family: 'DM Serif Display', serif;
      font-size: 17px;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .product-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      flex: 1;
      margin-bottom: 14px;
    }
    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: auto;
    }
    .product-price {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--text);
    }
    .add-to-cart-btn {
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      padding: 9px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
    }
    .add-to-cart-btn:hover { background: var(--primary-dk); }
    .add-to-cart-btn:active { transform: scale(.97); }
    .add-to-cart-btn.added {
      background: #5a7a5a;
    }

    /* ── Cart Drawer ──────────────────────────────────────── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,24,22,.45);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      backdrop-filter: blur(2px);
    }
    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 400px;
      max-width: 100vw;
      background: var(--bg-card);
      z-index: 201;
      transform: translateX(100%);
      transition: transform .3s ease;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-lg);
    }
    .cart-drawer.open { transform: translateX(0); }

    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
    }
    .cart-title {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
    }
    .cart-close {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 22px;
      color: var(--text-muted);
      line-height: 1;
      padding: 4px;
      transition: color var(--transition);
    }
    .cart-close:hover { color: var(--text); }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 16px 24px;
    }
    .cart-empty {
      text-align: center;
      padding: 60px 0;
      color: var(--text-muted);
    }
    .cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
    .cart-empty p { font-size: 14px; }

    .cart-item {
      display: flex;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .cart-item-img {
      width: 68px;
      height: 68px;
      border-radius: var(--radius);
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-muted);
    }
    .cart-item-details { flex: 1; }
    .cart-item-name {
      font-family: 'DM Serif Display', serif;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .cart-item-price { color: var(--primary); font-size: 14px; font-weight: 500; }
    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
    }
    .qty-btn {
      width: 26px;
      height: 26px;
      border: 1.5px solid var(--border);
      background: var(--bg);
      border-radius: var(--radius);
      cursor: pointer;
      font-size: 15px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      transition: border-color var(--transition), background var(--transition);
    }
    .qty-btn:hover { border-color: var(--primary); background: var(--bg-muted); }
    .qty-value { font-size: 14px; font-weight: 500; min-width: 16px; text-align: center; }
    .cart-item-remove {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-muted);
      font-size: 13px;
      padding: 2px;
      margin-left: auto;
      transition: color var(--transition);
    }
    .cart-item-remove:hover { color: #b33; }

    .cart-footer {
      padding: 20px 24px;
      border-top: 1px solid var(--border);
    }
    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .cart-total {
      display: flex;
      justify-content: space-between;
      margin-bottom: 18px;
    }
    .cart-total span:first-child { font-weight: 600; font-size: 16px; }
    .cart-total span:last-child {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--primary);
    }
    .cart-cta { width: 100%; }
    .cart-note {
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    /* ── Checkout Modal ───────────────────────────────────── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,24,22,.55);
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      backdrop-filter: blur(3px);
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .modal {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 480px;
      padding: 36px;
      box-shadow: var(--shadow-lg);
      transform: translateY(20px);
      transition: transform .3s ease;
    }
    .modal-overlay.open .modal { transform: translateY(0); }

    .modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .modal-header h3 { font-size: 26px; }
    .modal-close {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 20px;
      color: var(--text-muted);
      padding: 2px;
    }

    .form-group { margin-bottom: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color var(--transition);
    }
    .form-group input:focus,
    .form-group select:focus { border-color: var(--primary); }

    .form-section-title {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin: 20px 0 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }

    .order-summary-mini {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 14px;
      margin-bottom: 20px;
    }
    .order-summary-mini-title {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .order-summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .order-summary-total {
      display: flex;
      justify-content: space-between;
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
      margin-top: 8px;
      padding-top: 8px;
      border-top: 1px solid var(--border);
    }
    .checkout-btn { width: 100%; margin-top: 4px; padding: 14px; font-size: 15px; }
    .secure-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 12px;
    }

    /* ── About Section ────────────────────────────────────── */
    .about-section {
      background: var(--text);
      color: var(--white);
      padding: 80px 0;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-img-wrap {
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .about-eyebrow {
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--primary-lt);
      font-weight: 600;
      margin-bottom: 14px;
    }
    .about-section h2 {
      font-size: clamp(28px, 3.5vw, 42px);
      color: var(--white);
      margin-bottom: 18px;
    }
    .about-section p {
      color: rgba(242,240,237,.7);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 14px;
    }
    .about-stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
    }
    .about-stat strong {
      display: block;
      font-family: 'DM Serif Display', serif;
      font-size: 36px;
      color: var(--primary-lt);
      line-height: 1;
      margin-bottom: 4px;
    }
    .about-stat span {
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(242,240,237,.5);
    }

    /* ── Newsletter ───────────────────────────────────────── */
    .newsletter-section {
      padding: 64px 0;
      text-align: center;
    }
    .newsletter-box {
      background: var(--bg-muted);
      border-radius: var(--radius-lg);
      padding: 56px 40px;
      max-width: 540px;
      margin: 0 auto;
      border: 1px solid var(--border);
    }
    .newsletter-box h2 { font-size: 28px; margin-bottom: 10px; }
    .newsletter-box p {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 24px;
    }
    .newsletter-form {
      display: flex;
      gap: 10px;
    }
    .newsletter-form input {
      flex: 1;
      padding: 11px 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg-card);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color var(--transition);
    }
    .newsletter-form input:focus { border-color: var(--primary); }

    /* ── Footer ───────────────────────────────────────────── */
    .site-footer {
      background: var(--text);
      color: rgba(242,240,237,.6);
      padding: 56px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand .logo-name { color: var(--white); font-size: 20px; }
    .footer-brand .logo-sub { color: rgba(242,240,237,.4); }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-top: 14px;
      color: rgba(242,240,237,.5);
    }
    .footer-col h5 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 9px; }
    .footer-col a {
      font-size: 13px;
      color: rgba(242,240,237,.5);
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--primary-lt); }
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(242,240,237,.1);
      margin-bottom: 24px;
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
    }
    .footer-bottom a { color: var(--primary-lt); }
    .footer-social {
      display: flex;
      gap: 14px;
    }
    .footer-social a {
      color: rgba(242,240,237,.4);
      font-size: 14px;
      transition: color var(--transition);
    }
    .footer-social a:hover { color: var(--primary-lt); }

    /* ── Toast ────────────────────────────────────────────── */
    .toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--text);
      color: var(--white);
      padding: 12px 22px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      z-index: 400;
      box-shadow: var(--shadow-lg);
      transition: transform .3s ease;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toast.show { transform: translateX(-50%) translateY(0); }

    /* ── Responsive ───────────────────────────────────────── */
    @media (max-width: 900px) {
      .header-nav { display: none; }
      .hamburger { display: flex; }

      .about-grid { grid-template-columns: 1fr; }
      .about-img-wrap { max-height: 280px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    }

    @media (max-width: 600px) {
      .hero { min-height: 420px; }
      .hero-badge { display: none; }
      .hero-content { padding: 60px 20px; }

      .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }

      .footer-grid { grid-template-columns: 1fr; }

      .newsletter-form { flex-direction: column; }

      .form-row { grid-template-columns: 1fr; }

      .about-stats { gap: 20px; }

      .cart-drawer { width: 100vw; }

      .modal { padding: 24px 20px; }
    }

    @media (max-width: 480px) {
      .trust-items { gap: 20px; }
      .trust-item span { display: none; }
      .filters { gap: 6px; }
      .filter-btn { padding: 7px 14px; font-size: 12px; }
    }
