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

    :root {
      --primary:    #8b2635;
      --primary-dk: #6d1d28;
      --primary-lt: #b03344;
      --bg:         #faf6f0;
      --bg-warm:    #f2e8dc;
      --bg-card:    #fffdf9;
      --text:       #1a1512;
      --text-soft:  #4a3028;
      --text-muted: #8c6e62;
      --border:     #e8d8c8;
      --gold:       #d4a843;
      --gold-lt:    #e8c470;
      --cream:      #fdf8f0;
      --shadow:     rgba(26,21,18,.10);
      --shadow-md:  rgba(26,21,18,.18);
      --r:          10px;
      --r-lg:       18px;
      --transition: .22s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 15px;
      line-height: 1.6;
      min-height: 100vh;
    }

    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

    img { display: block; width: 100%; }

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

    button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; background: none; }

    /* ─── Utility ──────────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ─── Back link ────────────────────────────────────────────── */
    .back-bar {
      background: var(--text);
      color: #e8d0bc;
      font-size: 12px;
      padding: 7px 24px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .back-bar a {
      color: var(--gold-lt);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color var(--transition);
    }
    .back-bar a:hover { color: #faf6f0; }
    .back-bar a::before { content: '←'; font-size: 13px; }
    .back-bar span { color: #7a5a4a; }

    /* ─── Header ───────────────────────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 12px var(--shadow);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      max-width: 1200px;
      margin: 0 auto;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: var(--primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text strong {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--text);
    }
    .logo-text span {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    nav { display: flex; gap: 4px; }
    nav a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-soft);
      padding: 7px 13px;
      border-radius: 7px;
      transition: background var(--transition), color var(--transition);
    }
    nav a:hover { background: var(--bg-warm); color: var(--primary); }

    .header-actions { display: flex; align-items: center; gap: 10px; }

    .cart-btn {
      position: relative;
      background: var(--primary);
      color: #fff;
      border-radius: 9px;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background var(--transition), transform var(--transition);
      box-shadow: 0 2px 8px rgba(139,38,53,.30);
    }
    .cart-btn:hover { background: var(--primary-dk); transform: translateY(-1px); }
    .cart-btn:active { transform: translateY(0); }

    .cart-badge {
      background: var(--gold);
      color: #1a1512;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .cart-badge[data-count="0"] { display: none; }

    /* ─── Hero ─────────────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #1a1512 0%, #3d1018 50%, #2a0e14 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      min-height: 520px;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1400') center/cover no-repeat;
      opacity: .20;
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
      opacity: .5;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(212,168,67,.20);
      border: 1px solid rgba(212,168,67,.45);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 18px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero p {
      font-size: 17px;
      color: rgba(255,255,255,.80);
      line-height: 1.65;
      margin-bottom: 32px;
      max-width: 480px;
    }

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

    .btn-primary {
      background: var(--primary);
      color: #fff;
      padding: 14px 28px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 16px rgba(139,38,53,.45);
    }
    .btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,38,53,.55); }

    .btn-outline {
      background: transparent;
      color: #fff;
      padding: 13px 26px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background var(--transition), border-color var(--transition);
    }
    .btn-outline:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.55); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
    }
    .hero-stat strong {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--gold-lt);
      display: block;
      line-height: 1;
    }
    .hero-stat span {
      font-size: 12px;
      color: rgba(255,255,255,.60);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .hero-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .hero-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 1;
      box-shadow: 0 8px 24px rgba(0,0,0,.40);
    }
    .hero-card img { height: 100%; object-fit: cover; }
    .hero-card:first-child { margin-top: 28px; }
    .hero-card-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(26,21,18,.78);
      backdrop-filter: blur(6px);
      color: var(--gold-lt);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 6px;
      letter-spacing: .03em;
    }

    /* ─── Shop Section ─────────────────────────────────────────── */
    .shop-section { padding: 64px 0 80px; }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-header h2 {
      font-size: 34px;
      color: var(--text);
      margin-bottom: 10px;
    }
    .section-header p {
      color: var(--text-muted);
      font-size: 16px;
    }

    /* ─── Category Filters ─────────────────────────────────────── */
    .filters {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .filter-btn {
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      border: 1.5px solid var(--border);
      background: var(--bg-card);
      color: var(--text-soft);
      transition: all var(--transition);
    }
    .filter-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #fdf0f2;
    }
    .filter-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 2px 10px rgba(139,38,53,.30);
    }

    .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-row {
      display: flex;
      gap: 8px;
      margin: 12px 0 16px;
    }
    .promo-input {
      flex: 1;
      padding: 8px 12px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-family: inherit;
      font-size: 13px;
      background: var(--bg, #fdf8f2);
    }
    .promo-input:focus { outline: none; border-color: var(--primary); }
    .promo-btn {
      padding: 8px 16px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 6px;
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
    }
    .promo-btn:hover { opacity: 0.9; }

    .fulfillment-toggle {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }
    .fulfill-btn {
      flex: 1;
      padding: 10px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      background: var(--bg-card);
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }
    .fulfill-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .pickup-info {
      background: var(--bg-muted, #f0e8e0);
      border-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(4, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--bg-card);
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 2px 10px var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow-md); }

    .product-card[data-hidden="true"] { display: none; }

    .product-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .product-img img {
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }
    .product-card:hover .product-img img { transform: scale(1.06); }

    .product-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 5px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .product-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 600;
      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: 10px;
    }

    .product-price {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }

    .add-btn {
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
    }
    .add-btn:hover { background: var(--primary-dk); transform: scale(1.03); }
    .add-btn:active { transform: scale(.97); }

    /* ─── About Section ────────────────────────────────────────── */
    .about-section {
      background: var(--text);
      color: #e8d8cc;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .about-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400') center/cover no-repeat;
      opacity: .08;
    }

    .about-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-img-wrap {
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,.45);
      aspect-ratio: 4/3;
    }
    .about-img-wrap img { height: 100%; object-fit: cover; }

    .about-content {}

    .about-eyebrow {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .09em;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .about-content h2 {
      font-size: 36px;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .about-content p {
      font-size: 15.5px;
      line-height: 1.75;
      color: rgba(232,216,204,.80);
      margin-bottom: 16px;
    }

    .about-pillars {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 28px;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .pillar-icon {
      width: 40px;
      height: 40px;
      border-radius: 9px;
      background: rgba(212,168,67,.18);
      border: 1px solid rgba(212,168,67,.30);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .pillar-text strong {
      display: block;
      font-size: 14px;
      color: #fff;
      margin-bottom: 2px;
    }
    .pillar-text span {
      font-size: 13px;
      color: rgba(232,216,204,.65);
    }

    /* ─── Cart Sidebar ─────────────────────────────────────────── */
    .cart-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,21,18,.55);
      z-index: 200;
      backdrop-filter: blur(3px);
    }
    .cart-overlay.open { display: block; }

    .cart-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100vw;
      background: var(--cream);
      z-index: 201;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.4,0,.2,1);
      box-shadow: -8px 0 40px rgba(26,21,18,.22);
    }
    .cart-sidebar.open { transform: translateX(0); }

    .cart-head {
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-head h3 {
      font-size: 20px;
      color: var(--text);
    }
    .cart-close {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--bg-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--text-soft);
      transition: background var(--transition);
    }
    .cart-close:hover { background: var(--border); }

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

    .cart-empty {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .cart-empty .empty-icon { font-size: 52px; margin-bottom: 14px; }
    .cart-empty p { font-size: 15px; }

    .cart-item {
      display: flex;
      gap: 14px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .cart-item:last-child { border-bottom: none; }

    .cart-item-img {
      width: 60px;
      height: 60px;
      border-radius: 9px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .cart-item-img img { height: 100%; object-fit: cover; }

    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .cart-item-price {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .qty-btn {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: var(--bg-warm);
      border: 1px solid var(--border);
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: background var(--transition);
    }
    .qty-btn:hover { background: var(--border); }
    .qty-val {
      font-size: 14px;
      font-weight: 700;
      min-width: 20px;
      text-align: center;
      color: var(--text);
    }

    .cart-footer {
      padding: 20px 24px;
      border-top: 1px solid var(--border);
      background: var(--bg-card);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }
    .cart-subtotal span { font-size: 14px; color: var(--text-muted); }
    .cart-subtotal strong {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--text);
    }
    .cart-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* ─── Checkout Form in Cart ────────────────────────────────── */
    .checkout-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 14px;
    }
    .checkout-form label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: .05em;
      display: block;
      margin-bottom: 4px;
    }
    .checkout-form input,
    .checkout-form select {
      width: 100%;
      padding: 10px 13px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      background: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color var(--transition);
    }
    .checkout-form input:focus,
    .checkout-form select:focus { border-color: var(--primary); }

    .checkout-btn {
      width: 100%;
      background: var(--primary);
      color: #fff;
      padding: 15px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .02em;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 14px rgba(139,38,53,.35);
    }
    .checkout-btn:hover:not(:disabled) { background: var(--primary-dk); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(139,38,53,.45); }
    .checkout-btn:disabled { opacity: .5; cursor: not-allowed; }

    /* ─── Toast ────────────────────────────────────────────────── */
    .toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--text);
      color: #fff;
      padding: 12px 24px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 8px 28px rgba(0,0,0,.30);
      z-index: 400;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
      opacity: 0;
      white-space: nowrap;
    }
    .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
    .toast-icon { font-size: 17px; }

    /* ─── Footer ───────────────────────────────────────────────── */
    footer {
      background: #0f0c0a;
      color: #c8b4a8;
      padding: 56px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .footer-logo-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }
    .footer-logo strong {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: #fff;
    }
    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.7;
      color: #8a7268;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li {
      font-size: 13.5px;
      color: #8a7268;
      margin-bottom: 8px;
      line-height: 1.5;
    }
    .footer-col ul li strong { color: #c8b4a8; }

    .footer-bottom {
      border-top: 1px solid #2a2018;
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12.5px;
      color: #5a4a40;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom a { color: var(--gold); }
    .footer-bottom a:hover { color: var(--gold-lt); }

    /* ─── Responsive ───────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .product-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      nav { display: none; }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 60px 20px;
      }
      .hero-cards { display: none; }

      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

      .about-inner { grid-template-columns: 1fr; gap: 32px; }
      .about-img-wrap { display: none; }

      .cart-sidebar { width: 100vw; }

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

    @media (max-width: 500px) {
      .product-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 20px; }
      .hero h1 { font-size: 34px; }
    }
