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

    :root {
      --primary:     #8b6f47;
      --primary-dark:#6e5538;
      --bg:          #f5f0e8;
      --text:        #2c2418;
      --text-light:  #6b5a45;
      --gold:        #c9a84c;
      --gold-light:  #e8d5a3;
      --cream:       #faf7f2;
      --border:      #ddd5c4;
      --shadow:      rgba(44, 36, 24, 0.12);
    }

    html { scroll-behavior: smooth; }

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

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.2;
    }

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

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

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

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

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

    .back-link {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-light);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .back-link:hover { color: var(--primary); }

    .back-link svg { flex-shrink: 0; }

    .logo {
      text-align: center;
      flex: 1;
    }

    .logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--text);
      line-height: 1.1;
    }

    .logo-tagline {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-top: 1px;
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .header-nav a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      transition: color 0.2s;
    }

    .header-nav a:hover { color: var(--primary); }

    .cart-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--primary);
      color: #fff;
      padding: 8px 16px;
      border-radius: 2px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.2s;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .cart-btn:hover { background: var(--primary-dark); }

    .cart-count {
      background: var(--gold);
      color: var(--text);
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      line-height: 1;
    }

    .cart-count.hidden { display: none; }

    /* ─── Hero ─────────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #3d2e1a 0%, #5c4328 40%, #7a5c38 100%);
      color: var(--cream);
      padding: 80px 24px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.4;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400') center/cover no-repeat;
      opacity: 0.18;
      pointer-events: none;
    }

    .hero-content { position: relative; max-width: 680px; margin: 0 auto; }

    .hero-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      height: 1px;
      width: 40px;
      background: var(--gold);
      opacity: 0.6;
    }

    .hero h1 {
      font-size: clamp(36px, 6vw, 60px);
      font-weight: 600;
      font-style: italic;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hero p {
      font-size: 16px;
      color: rgba(250, 247, 242, 0.8);
      max-width: 500px;
      margin: 0 auto 36px;
      font-weight: 300;
      line-height: 1.7;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--text);
      padding: 14px 32px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .hero-cta:hover {
      background: #b8933f;
      transform: translateY(-1px);
    }

    .hero-badges {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .hero-badge {
      text-align: center;
    }

    .hero-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--gold-light);
      line-height: 1;
    }

    .hero-badge-label {
      font-size: 11px;
      color: rgba(250, 247, 242, 0.6);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ─── Shop Section ─────────────────────────────────────── */
    .shop-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 64px 24px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 500;
      color: var(--text);
    }

    /* ─── Filter Buttons ───────────────────────────────────── */
    .filter-bar {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 48px;
    }

    .filter-btn {
      padding: 9px 20px;
      border-radius: 2px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: transparent;
      color: var(--text-light);
      border: 1.5px solid var(--border);
      transition: all 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .filter-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .filter-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    .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-light); }
    .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-light); }

    .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: 2px;
      font-family: inherit;
      font-size: 13px;
      background: var(--bg);
    }
    .promo-input:focus { outline: none; border-color: var(--primary); }
    .promo-btn {
      padding: 8px 16px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 2px;
      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: 2px;
      background: var(--bg);
      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, #e8e4df);
      border-radius: 2px;
      padding: 12px 16px;
      margin-bottom: 16px;
      font-size: 13px;
      color: var(--text-light);
    }

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

    .product-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px var(--shadow);
    }

    .product-card.hidden { display: none; }

    .product-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--border);
    }

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

    .product-card:hover .product-img-wrap img {
      transform: scale(1.05);
    }

    .product-category-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(44, 36, 24, 0.75);
      color: var(--gold-light);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 3px 9px;
      border-radius: 2px;
      backdrop-filter: blur(4px);
    }

    .product-body {
      padding: 18px 20px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.25;
    }

    .product-desc {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.55;
      flex: 1;
    }

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

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

    .add-to-cart-btn {
      background: var(--primary);
      color: #fff;
      padding: 8px 16px;
      border-radius: 2px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .add-to-cart-btn:hover { background: var(--primary-dark); }

    .add-to-cart-btn.added {
      background: #5a7a4a;
    }

    /* ─── Cart Overlay + Drawer ────────────────────────────── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(44, 36, 24, 0.45);
      z-index: 300;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      backdrop-filter: blur(2px);
    }

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

    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: min(460px, 100vw);
      background: var(--cream);
      z-index: 400;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(44, 36, 24, 0.2);
    }

    .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);
      background: var(--bg);
    }

    .cart-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
    }

    .cart-close-btn {
      background: none;
      border: none;
      color: var(--text-light);
      cursor: pointer;
      padding: 4px;
      border-radius: 50%;
      transition: color 0.2s, background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
    }

    .cart-close-btn:hover {
      color: var(--text);
      background: var(--border);
    }

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

    .cart-empty {
      text-align: center;
      padding: 48px 0;
      color: var(--text-light);
    }

    .cart-empty svg {
      margin: 0 auto 16px;
      opacity: 0.35;
    }

    .cart-empty p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      font-style: italic;
    }

    .cart-item {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      gap: 14px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .cart-item:last-child { border-bottom: none; }

    .cart-item-img {
      width: 72px;
      height: 72px;
      object-fit: cover;
      border-radius: 2px;
      border: 1px solid var(--border);
    }

    .cart-item-info { min-width: 0; }

    .cart-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .cart-item-price {
      font-size: 13px;
      color: var(--primary);
      font-weight: 500;
    }

    .qty-controls {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }

    .qty-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--text);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.15s;
      line-height: 1;
    }

    .qty-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .qty-num {
      font-size: 14px;
      font-weight: 500;
      min-width: 20px;
      text-align: center;
    }

    .cart-item-remove {
      background: none;
      border: none;
      color: var(--text-light);
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      padding: 2px 4px;
      border-radius: 2px;
      transition: color 0.15s;
      margin-top: 2px;
    }

    .cart-item-remove:hover { color: #c0392b; }

    /* ─── Cart Footer ──────────────────────────────────────── */
    .cart-footer {
      padding: 20px 24px 28px;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 16px;
    }

    .cart-subtotal-label {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    .cart-subtotal-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 600;
      color: var(--primary);
    }

    /* ─── Checkout Form ────────────────────────────────────── */
    .checkout-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 16px;
    }

    .checkout-form label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      display: block;
      margin-bottom: 4px;
    }

    .checkout-form input,
    .checkout-form textarea {
      width: 100%;
      padding: 9px 12px;
      border: 1.5px solid var(--border);
      border-radius: 2px;
      background: var(--cream);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      transition: border-color 0.2s;
    }

    .checkout-form input:focus,
    .checkout-form textarea:focus {
      outline: none;
      border-color: var(--primary);
    }

    .checkout-form textarea {
      resize: none;
      height: 60px;
    }

    .checkout-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .checkout-submit-btn {
      width: 100%;
      padding: 14px;
      background: var(--primary);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .checkout-submit-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .secure-note {
      text-align: center;
      font-size: 11px;
      color: var(--text-light);
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    /* ─── About Section ────────────────────────────────────── */
    .about-section {
      background: linear-gradient(to right, #3d2e1a, #5c4328);
      color: var(--cream);
      padding: 80px 24px;
    }

    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
    }

    .about-img-wrap::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 4px;
      pointer-events: none;
      z-index: 1;
    }

    .about-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: sepia(15%) contrast(1.05);
    }

    .about-text .section-eyebrow {
      color: var(--gold-light);
      margin-bottom: 14px;
    }

    .about-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 600;
      font-style: italic;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.15;
    }

    .about-text p {
      font-size: 15px;
      color: rgba(250, 247, 242, 0.8);
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .about-details {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 28px;
    }

    .about-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: rgba(250, 247, 242, 0.75);
    }

    .about-detail-icon {
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─── Footer ───────────────────────────────────────────── */
    .site-footer {
      background: #1e1710;
      color: rgba(250, 247, 242, 0.7);
      padding: 52px 24px 36px;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
    }

    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.65;
      max-width: 280px;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(250, 247, 242, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(250, 247, 242, 0.6);
      transition: all 0.2s;
      font-size: 14px;
    }

    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-col ul li a {
      font-size: 13px;
      color: rgba(250, 247, 242, 0.6);
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--gold); }

    .footer-contact-item {
      font-size: 13px;
      color: rgba(250, 247, 242, 0.6);
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-bottom: 9px;
      line-height: 1.5;
    }

    .footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

    .footer-bottom {
      max-width: 1100px;
      margin: 36px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(250, 247, 242, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(250, 247, 242, 0.35);
    }

    .demo-badge {
      background: var(--gold);
      color: var(--text);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
    }

    /* ─── Utility ──────────────────────────────────────────── */
    .divider {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin: 0 auto 20px;
    }

    /* ─── Responsive ───────────────────────────────────────── */
    @media (max-width: 900px) {
      .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

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

      .footer-inner > :first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 640px) {
      .header-inner { padding: 0 16px; }

      .header-nav a:not(.cart-btn-link) { display: none; }

      .back-link span { display: none; }

      .logo-name { font-size: 18px; }

      .hero { padding: 56px 20px 52px; }

      .hero-badges { gap: 20px; }

      .shop-section { padding: 44px 16px; }

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

      .product-name { font-size: 16px; }

      .product-price { font-size: 18px; }

      .about-section { padding: 52px 20px; }

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

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

      .filter-bar { gap: 6px; }

      .filter-btn { padding: 7px 14px; font-size: 11px; }
    }

    /* ─── Scrollbar styling ────────────────────────────────── */
    .cart-items::-webkit-scrollbar { width: 4px; }
    .cart-items::-webkit-scrollbar-track { background: transparent; }
    .cart-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
