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

    :root {
      --bg:        #1a1a1a;
      --bg2:       #222222;
      --bg3:       #2a2a2a;
      --border:    #333333;
      --accent:    #d4a843;
      --accent2:   #b8902e;
      --text:      #f5f5f0;
      --muted:     #999990;
      --card:      #242424;
    }

    html { scroll-behavior: smooth; }

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

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Space Grotesk', sans-serif;
      line-height: 1.2;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: #111;
      border-bottom: 1px solid var(--border);
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--muted);
    }
    .topbar a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.2s;
    }
    .topbar a:hover { color: #fff; }
    .topbar-right { display: flex; gap: 20px; align-items: center; font-size: 13px; }

    /* ── HEADER ── */
    header {
      background: #111;
      border-bottom: 1px solid var(--border);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
    }
    .logo-icon::before {
      content: '';
      width: 12px;
      height: 12px;
      background: #111;
      border-radius: 50%;
      position: absolute;
    }
    .logo-icon::after {
      content: '';
      width: 4px;
      height: 4px;
      background: var(--accent);
      border-radius: 50%;
      position: absolute;
      z-index: 1;
    }
    .logo-text {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
    }
    .logo-text span { color: var(--accent); }
    .logo-sub {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      display: block;
      margin-top: 1px;
    }

    .header-right { display: flex; align-items: center; gap: 16px; }
    .cart-btn {
      background: var(--accent);
      color: #111;
      border: none;
      border-radius: 8px;
      padding: 10px 18px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.1s;
    }
    .cart-btn:hover { background: var(--accent2); }
    .cart-btn:active { transform: scale(0.97); }
    .cart-count {
      background: #111;
      color: var(--accent);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 40%, #1f1a12 100%);
      border-bottom: 1px solid var(--border);
      padding: 80px 24px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1483412033650-1015ddeb83d1?w=1400') center/cover no-repeat;
      opacity: 0.15;
      pointer-events: none;
    }

    /* ── ABOUT ── */
    .about-section {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 72px 24px;
    }
    .about-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .about-img-wrap { border-radius: 8px; overflow: hidden; }
    .about-img-wrap img { width: 100%; display: block; }
    .about-eyebrow {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .about-content h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 28px;
      color: var(--text);
      margin-bottom: 16px;
    }
    .about-content p {
      color: var(--text-m);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .about-details {
      display: flex;
      gap: 24px;
      margin-top: 20px;
    }
    .about-detail {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-m);
    }
    .about-detail svg { color: var(--accent); flex-shrink: 0; }
    @media (max-width: 768px) {
      .about-inner { grid-template-columns: 1fr; }
    }
    .hero-label {
      display: inline-block;
      background: rgba(212,168,67,0.12);
      border: 1px solid rgba(212,168,67,0.3);
      color: var(--accent);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }
    .hero p {
      font-size: 18px;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #111;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.1s;
    }
    .hero-cta:hover { background: var(--accent2); transform: translateY(-1px); }
    .hero-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .hero-badge-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }
    .hero-badge-item .dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── SHOP SECTION ── */
    .shop {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 24px 80px;
    }

    .shop-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .shop-header h2 {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .shop-header h2 span { color: var(--accent); }
    .result-count {
      font-size: 14px;
      color: var(--muted);
    }

    /* ── FILTER TABS ── */
    .filter-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .filter-tab {
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.01em;
    }
    .filter-tab:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .filter-tab.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #111;
      font-weight: 700;
    }

    /* ── PRODUCT GRID ── */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
    }

    .product-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      border-color: rgba(212,168,67,0.4);
      transform: translateY(-3px);
    }
    .product-img-wrap {
      position: relative;
      padding-top: 100%;
      background: #2a2a2a;
      overflow: hidden;
    }
    .product-img-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .product-card:hover .product-img-wrap img {
      transform: scale(1.05);
    }
    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--accent);
      color: #111;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 4px;
    }
    .product-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .product-cat {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      font-family: 'Space Grotesk', sans-serif;
    }
    .product-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }
    .product-footer {
      padding: 12px 16px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border);
    }
    .product-price {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }
    .add-btn {
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .add-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #111;
    }
    .add-btn.added {
      background: rgba(212,168,67,0.15);
      border-color: var(--accent);
      color: var(--accent);
    }

    .hidden { display: none !important; }

    /* ── CART DRAWER ── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.65);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 380px;
      max-width: 100vw;
      background: #111;
      border-left: 1px solid var(--border);
      z-index: 201;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .cart-drawer.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: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .close-cart {
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 1;
      transition: color 0.2s, border-color 0.2s;
    }
    .close-cart:hover { color: var(--text); border-color: var(--muted); }

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

    .cart-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .cart-item:last-child { border-bottom: none; }
    .cart-item-img {
      width: 56px;
      height: 56px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--bg3);
    }
    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .cart-item-price { font-size: 14px; color: var(--accent); font-weight: 600; }
    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }
    .qty-btn {
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--text);
      width: 24px;
      height: 24px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
    }
    .qty-btn:hover { border-color: var(--accent); color: var(--accent); }
    .qty-num { font-size: 13px; font-weight: 600; min-width: 16px; text-align: center; }
    .remove-item {
      background: none;
      border: none;
      color: #555;
      cursor: pointer;
      font-size: 16px;
      padding: 4px;
      transition: color 0.2s;
      flex-shrink: 0;
    }
    .remove-item:hover { color: #cc4444; }

    .cart-foot {
      padding: 20px 24px;
      border-top: 1px solid var(--border);
    }
    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .cart-total span:first-child {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .cart-total-price {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--text);
    }
    .checkout-btn {
      width: 100%;
      background: var(--accent);
      color: #111;
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      letter-spacing: 0.01em;
    }
    .checkout-btn:hover { background: var(--accent2); }
    .checkout-btn:active { transform: scale(0.98); }
    .checkout-note {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      margin-top: 10px;
    }

    /* ── Search Bar ── */
    .search-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg3);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 8px 16px;
      max-width: 300px;
      margin: 0 auto 24px;
      transition: border-color .2s ease;
    }
    .search-wrap:focus-within { border-color: var(--accent); }
    .search-wrap svg { flex-shrink: 0; color: var(--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(--muted); }

    /* ── Promo Code ── */
    .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: 8px; font-family: inherit; font-size: 13px; background: var(--bg2); color: var(--text); }
    .promo-input:focus { outline: none; border-color: var(--accent); }
    .promo-btn { padding: 8px 16px; background: var(--accent); color: #111; border: none; border-radius: 8px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
    .promo-btn:hover { opacity: 0.9; }

    /* ── Cart subtotal rows ── */
    .cart-sub-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 6px; }

    /* ── 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: 8px; background: var(--bg2); color: var(--text); font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
    .fulfill-btn.active { background: var(--accent); color: #111; border-color: var(--accent); }
    .pickup-info { background: var(--bg3); border-radius: 8px; padding: 12px 16px; margin-bottom: 16px; font-size: 13px; color: var(--muted); }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: var(--accent);
      overflow: hidden;
      padding: 12px 0;
      border-top: 1px solid var(--accent2);
      border-bottom: 1px solid var(--accent2);
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }
    .marquee-track span {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #111;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding-right: 40px;
    }
    .marquee-track span::before {
      content: '♦ ';
      margin-right: 6px;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── FOOTER ── */
    footer {
      background: #0d0d0d;
      border-top: 1px solid var(--border);
      padding: 48px 24px 32px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand p {
      color: var(--muted);
      font-size: 14px;
      margin: 12px 0 0;
      max-width: 280px;
      line-height: 1.7;
    }
    .footer-col h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--accent); }
    .footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: var(--muted); }
    .footer-bottom a { color: var(--accent); text-decoration: none; }

    /* ── TOAST ── */
    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: #2a2a2a;
      border: 1px solid var(--accent);
      color: var(--text);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 12px 24px;
      border-radius: 8px;
      z-index: 999;
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      pointer-events: none;
    }
    .toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    .toast-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero { padding: 52px 20px 48px; }
      .hero h1 { font-size: 32px; }
      .hero p { font-size: 16px; }
      .hero-badge { gap: 16px; }
      .shop { padding: 32px 16px 60px; }
      .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .header-right .header-search { display: none; }
    }
    @media (max-width: 480px) {
      header { padding: 14px 16px; }
      .logo-text { font-size: 17px; }
      .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .topbar { display: none; }
    }
