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

    :root {
      --primary:    #b5651d;
      --primary-dk: #8b4a14;
      --primary-lt: #d4824a;
      --bg:         #faf6f0;
      --bg-warm:    #f5ede0;
      --bg-card:    #fffdf9;
      --text:       #2c1810;
      --text-soft:  #5a3e32;
      --text-muted: #8c6e62;
      --border:     #e8d8c8;
      --gold:       #c8960c;
      --cream:      #fdf8f0;
      --shadow:     rgba(44,24,16,.10);
      --shadow-md:  rgba(44,24,16,.16);
      --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(--primary-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: 42px;
      height: 42px;
      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(181,101,29,.30);
    }
    .cart-btn:hover { background: var(--primary-dk); transform: translateY(-1px); }
    .cart-btn:active { transform: translateY(0); }

    .cart-badge {
      background: #fff;
      color: var(--primary);
      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, #2c1810 0%, #4a2318 50%, #3d1f12 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
    }

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

    .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(181,101,29,.4);
      border: 1px solid rgba(181,101,29,.5);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #f5c88a;
      margin-bottom: 20px;
    }

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

    .hero h1 em {
      font-style: italic;
      color: #f5c88a;
    }

    .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(181,101,29,.40);
    }
    .btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(181,101,29,.50); }

    .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 {}
    .hero-stat strong {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: #f5c88a;
      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,.35);
    }
    .hero-card img { height: 100%; object-fit: cover; }
    .hero-card:first-child { margin-top: 24px; }
    .hero-card-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(44,24,16,.75);
      backdrop-filter: blur(6px);
      color: #f5c88a;
      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: #fdf3e8;
    }
    .filter-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 2px 10px rgba(181,101,29,.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;
      padding: 0 24px;
    }
    .promo-input {
      flex: 1;
      padding: 8px 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--r, 6px);
      font-family: inherit;
      font-size: 13px;
      background: var(--bg, #faf6f0);
    }
    .promo-input:focus { outline: none; border-color: var(--primary); }
    .promo-btn {
      padding: 8px 16px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: var(--r, 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: var(--r, 10px);
      background: var(--bg, #faf6f0);
      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-warm, #f5ede0);
      border-radius: var(--r, 10px);
      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(260px, 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 8px 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 28px var(--shadow-md);
    }

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

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

    .product-category-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(250,246,240,.88);
      backdrop-filter: blur(4px);
      color: var(--primary);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 4px 10px;
      border-radius: 6px;
      border: 1px solid rgba(181,101,29,.20);
    }

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

    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .product-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
      flex: 1;
      line-height: 1.5;
    }

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

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

    .add-to-cart {
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background var(--transition), transform var(--transition);
    }
    .add-to-cart:hover { background: var(--primary-dk); transform: scale(1.04); }
    .add-to-cart:active { transform: scale(.98); }

    .add-to-cart.added {
      background: #4a7c59;
      animation: bump .25s ease;
    }

    @keyframes bump {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.12); }
      100% { transform: scale(1); }
    }

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

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

    .cart-header {
      padding: 22px 24px 18px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-header h2 {
      font-size: 22px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cart-count-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .close-btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--bg-warm);
      color: var(--text-soft);
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), color var(--transition);
    }
    .close-btn:hover { background: var(--border); color: var(--text); }

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

    .cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      gap: 12px;
      color: var(--text-muted);
      padding: 40px 0;
    }
    .cart-empty-icon { font-size: 52px; opacity: .5; }
    .cart-empty p { font-size: 15px; }

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

    .cart-item-img {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      border: 1px solid var(--border);
    }

    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-name {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
      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;
      margin-top: 8px;
    }
    .qty-btn {
      width: 26px; height: 26px;
      border-radius: 6px;
      background: var(--bg-warm);
      color: var(--text);
      font-size: 16px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
      line-height: 1;
    }
    .qty-btn:hover { background: var(--border); }
    .qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

    .cart-item-remove {
      color: var(--text-muted);
      font-size: 16px;
      padding: 4px;
      transition: color var(--transition);
    }
    .cart-item-remove:hover { color: #c0392b; }

    .cart-footer {
      padding: 18px 24px 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;
      font-size: 14px;
      color: var(--text-soft);
    }
    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }
    .cart-total span:first-child {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }
    .cart-total-amount {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
    }

    .checkout-btn {
      width: 100%;
      background: var(--primary);
      color: #fff;
      padding: 15px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 14px rgba(181,101,29,.35);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .checkout-btn:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(181,101,29,.42); }
    .checkout-btn:disabled { background: var(--text-muted); box-shadow: none; cursor: not-allowed; transform: none; }

    /* ─── Checkout Modal ───────────────────────────────────────── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(44,24,16,.55);
      backdrop-filter: blur(4px);
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }

    .modal {
      background: var(--cream);
      border-radius: 20px;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 24px 64px rgba(44,24,16,.28);
      transform: scale(.94) translateY(16px);
      transition: transform .3s cubic-bezier(.34,1.56,.64,1);
      overflow: hidden;
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-overlay.open .modal { transform: scale(1) translateY(0); }

    .modal-header {
      background: linear-gradient(135deg, var(--text) 0%, #4a2318 100%);
      padding: 28px 28px 24px;
      color: #fff;
    }
    .modal-header h2 {
      font-size: 24px;
      color: #fff;
      margin-bottom: 4px;
    }
    .modal-header p { font-size: 14px; color: rgba(255,255,255,.65); }

    .modal-body { padding: 28px; }

    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-soft);
      margin-bottom: 6px;
      letter-spacing: .02em;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: #fff;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(181,101,29,.15);
    }

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

    .order-summary-mini {
      background: var(--bg-warm);
      border-radius: 10px;
      padding: 14px 16px;
      margin-bottom: 20px;
    }
    .order-summary-mini h4 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .order-summary-line {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--text-soft);
      padding: 3px 0;
    }
    .order-summary-line.total {
      border-top: 1px solid var(--border);
      margin-top: 8px;
      padding-top: 8px;
      font-weight: 700;
      color: var(--text);
      font-size: 15px;
    }

    .modal-footer {
      padding: 0 28px 28px;
      display: flex;
      gap: 10px;
    }
    .btn-cancel {
      flex: 0 0 auto;
      padding: 13px 20px;
      border-radius: 9px;
      background: var(--bg-warm);
      color: var(--text-soft);
      font-size: 14px;
      font-weight: 600;
      transition: background var(--transition);
    }
    .btn-cancel:hover { background: var(--border); }

    .btn-place-order {
      flex: 1;
      background: var(--primary);
      color: #fff;
      padding: 13px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 600;
      text-align: center;
      transition: background var(--transition), box-shadow var(--transition);
      box-shadow: 0 3px 12px rgba(181,101,29,.35);
    }
    .btn-place-order:hover { background: var(--primary-dk); }

    /* ─── About Section ────────────────────────────────────────── */
    .about-section {
      background: var(--text);
      color: #fff;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .about-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--bg);
      clip-path: ellipse(60% 100% at 50% 0%);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-imgs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .about-img {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,.3);
    }
    .about-img img { height: 180px; object-fit: cover; }
    .about-img:nth-child(2) { margin-top: 28px; }

    .about-content {}
    .about-badge {
      display: inline-block;
      background: rgba(181,101,29,.3);
      color: #f5c88a;
      border: 1px solid rgba(181,101,29,.4);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .about-content h2 {
      font-size: 34px;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .about-content h2 em { font-style: italic; color: #f5c88a; }
    .about-content p {
      color: rgba(255,255,255,.72);
      line-height: 1.75;
      margin-bottom: 14px;
      font-size: 15.5px;
    }

    .about-perks {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 24px;
    }
    .about-perk {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: rgba(255,255,255,.80);
    }
    .perk-icon {
      width: 32px;
      height: 32px;
      background: rgba(181,101,29,.35);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    /* ─── Footer ───────────────────────────────────────────────── */
    footer {
      background: #1a0f0a;
      color: rgba(255,255,255,.60);
      padding: 48px 0 28px;
    }

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

    .footer-brand .logo-text strong { color: #f5c88a; font-size: 20px; }
    .footer-brand .logo-text span { color: rgba(255,255,255,.40); }
    .footer-brand p {
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255,255,255,.50);
    }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      color: rgba(255,255,255,.85);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a {
      font-size: 13.5px;
      color: rgba(255,255,255,.50);
      transition: color var(--transition);
    }
    .footer-col ul li a:hover { color: #f5c88a; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .footer-demo-badge {
      background: rgba(181,101,29,.25);
      border: 1px solid rgba(181,101,29,.35);
      color: #f5c88a;
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .04em;
    }

    /* ─── Toast ────────────────────────────────────────────────── */
    .toast-container {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 400;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
      pointer-events: none;
    }
    .toast {
      background: var(--text);
      color: #fff;
      padding: 11px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 6px 20px rgba(44,24,16,.3);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      animation: toastIn .3s cubic-bezier(.34,1.56,.64,1) forwards;
    }
    .toast.out { animation: toastOut .25s ease forwards; }
    @keyframes toastIn { from { opacity:0; transform: translateY(12px) scale(.92); } to { opacity:1; transform: none; } }
    @keyframes toastOut { from { opacity:1; transform: none; } to { opacity:0; transform: translateY(8px) scale(.95); } }

    /* ─── Mobile ───────────────────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 36px;
      height: 36px;
      padding: 8px;
      border-radius: 8px;
      background: var(--bg-warm);
      justify-content: center;
    }
    .hamburger span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .2s ease;
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero-cards { display: none; }
      .hero { min-height: 420px; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    }

    @media (max-width: 700px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .hero h1 { font-size: 34px; }
      .hero p { font-size: 15px; }
      .hero-stats { gap: 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .header-inner { padding: 12px 16px; }
      .cart-drawer { width: 100vw; }
      .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .product-name { font-size: 14px; }
      .product-price { font-size: 17px; }
      .add-to-cart { padding: 8px 12px; font-size: 12px; }
    }

    @media (max-width: 340px) {
      .product-grid { grid-template-columns: 1fr; }
    }

    /* ─── Scrollbar ────────────────────────────────────────────── */
    .cart-items::-webkit-scrollbar,
    .modal::-webkit-scrollbar { width: 5px; }
    .cart-items::-webkit-scrollbar-thumb,
    .modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
