/* ============================================================
   MEATBAGS SHOP — Main Stylesheet
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg2: #f7f5f2;
  --bg3: #edeae5;
  --surface: #e3ded6;
  --border: #d5cdc3;
  --red: #c0392b;
  --red-light: #e74c3c;
  --gold: #9a7420;
  --cream: #1a1612;
  --text: #1a1612;
  --text-muted: #6b5e52;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-light); }
p { color: var(--text-muted); }
strong { color: var(--text); }

/* ================================================================
   HEADER — rebuilt clean
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* Logo */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  color: #000; letter-spacing: -0.02em;
}
.logo-text::after {
  content: '\2122';
  font-size: 0.5em;
  vertical-align: super;
  color: var(--red);
}
.logo-img { height: 44px; width: auto; }

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.main-nav a {
  color: #000;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all .2s;
}
.main-nav a:hover { color: #000; background: var(--bg3); }
.main-nav a.active { color: #fff; background: #000; }

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  flex-shrink: 0;
  transition: all .2s;
}
.cart-btn:hover { background: var(--red); color: #fff; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  flex-shrink: 0;
  z-index: 1010;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

/* Hamburger → X */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- PAGE WRAPPER ---- */
main { padding-top: 70px; min-height: 80vh; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: linear-gradient(135deg, #fff 0%, #f9f3eb 50%, #fff 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(192,57,43,0.05) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--red);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; color: var(--cream);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .25s;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-light); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(192,57,43,0.25); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); color: var(--cream); }
.btn-sm { padding: 9px 18px; font-size: 0.84rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8882a; color: #fff; }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 80px 20px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red);
  display: block; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream); margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ================================================================
   PRODUCTS GRID
   ================================================================ */
.products-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--red); }
.product-img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, #edeae5, #e3ded6);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { font-size: 5rem; opacity: 0.3; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.product-body { padding: 20px; }
.product-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-bottom: 8px; }
.product-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.product-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.size-option { display: flex; align-items: center; gap: 4px; }
.size-option input[type="radio"] { display: none; }
.size-option label {
  padding: 6px 14px; border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all .2s; color: var(--text-muted);
}
.size-option input:checked + label,
.size-option label:hover { background: var(--red); color: #fff; border-color: var(--red); }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.product-actions { display: flex; gap: 10px; }

/* ================================================================
   FEATURES STRIP
   ================================================================ */
.features-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}
.features-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: space-around;
}
.feature-item { text-align: center; flex: 1; min-width: 160px; }
.feature-icon { font-size: 2.2rem; margin-bottom: 10px; }
.feature-title { font-weight: 600; color: var(--cream); font-size: 0.95rem; margin-bottom: 4px; }
.feature-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--cream); font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   FORMS
   ================================================================ */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: 0.03em; }
.form-control {
  width: 100%; padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--red); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--bg); }

/* ================================================================
   CART
   ================================================================ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; padding: 12px 16px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-name { font-weight: 600; color: var(--cream); }
.cart-item-size { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 4px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); cursor: pointer; font-size: 1.1rem; font-weight: 600;
  transition: all .2s;
}
.qty-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.qty-val { min-width: 30px; text-align: center; font-weight: 600; color: var(--cream); }
.remove-btn { background: none; border: none; color: var(--red); cursor: pointer; font-size: 1.2rem; padding: 4px 8px; }

/* ================================================================
   ORDER SUMMARY
   ================================================================ */
.order-summary {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.summary-row .label { color: var(--text-muted); }
.summary-row .val { color: var(--text); font-weight: 500; }

/* ================================================================
   PAYMENT OPTIONS
   ================================================================ */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.payment-option input { display: none; }
.payment-option label {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px; border-radius: 10px;
  border: 2px solid var(--border);
  cursor: pointer; transition: all .2s; text-align: center;
}
.payment-option label .pay-icon { font-size: 2rem; }
.payment-option label .pay-name { font-weight: 600; color: var(--cream); font-size: 0.9rem; }
.payment-option label .pay-desc { font-size: 0.78rem; color: var(--text-muted); }
.payment-option input:checked + label { border-color: var(--gold); background: rgba(154,116,32,0.06); }
.payment-option label:hover { border-color: var(--text-muted); }

/* ================================================================
   INVOICE
   ================================================================ */
.invoice-container {
  background: #fff; color: #1a1612;
  max-width: 760px; margin: 0 auto;
  padding: 48px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.invoice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.invoice-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: #c0392b; }
.invoice-title { font-size: 2rem; font-weight: 700; color: #1a1612; }
.invoice-meta p { font-size: 0.9rem; color: #6b5e52; line-height: 1.8; }
.invoice-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.invoice-table th { background: #f7f5f2; padding: 10px 14px; text-align: left; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: #6b5e52; }
.invoice-table td { padding: 12px 14px; border-bottom: 1px solid #e3ded6; font-size: 0.9rem; color: #1a1612; }
.invoice-total-row { font-weight: 700; background: #c0392b; color: #fff; }
.invoice-total-row td { padding: 14px; color: #fff; }
@media print {
  body * { visibility: hidden; }
  .invoice-container, .invoice-container * { visibility: visible; }
  .invoice-container { position: fixed; inset: 0; padding: 32px; border: none; box-shadow: none; }
  .no-print { display: none !important; }
}

/* ================================================================
   PAGE HERO
   ================================================================ */
.page-hero {
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
  padding: 60px 20px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--cream); }
.page-hero p { margin-top: 10px; font-size: 1rem; }

/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img-block {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; opacity: 0.3;
}
.about-text h2 { font-size: 2rem; color: var(--cream); margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; line-height: 1.8; }
.stats-row { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
}
.contact-card h4 { color: var(--cream); margin-bottom: 6px; font-size: 1rem; }
.contact-card p { font-size: 0.9rem; }

/* ================================================================
   POLICY
   ================================================================ */
.policy-content {
  max-width: 800px; margin: 0 auto;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px;
}
.policy-content h2 { color: var(--cream); margin: 28px 0 12px; font-size: 1.3rem; }
.policy-content p { margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { padding-left: 20px; color: var(--text-muted); }
.policy-content ul li { margin-bottom: 8px; line-height: 1.7; }

/* ================================================================
   ALERTS
   ================================================================ */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 0.9rem; }
.alert-success { background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.3); color: #1e8449; }
.alert-error { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.3); color: #922b21; }
.alert-info { background: rgba(52,152,219,0.08); border: 1px solid rgba(52,152,219,0.3); color: #2471a3; }

/* ================================================================
   ADMIN
   ================================================================ */
.admin-layout { display: flex; min-height: 100vh; background: var(--bg3); }
.admin-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 0; position: fixed; top: 0; bottom: 0; overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 900;
  color: var(--cream); border-bottom: 1px solid var(--border);
}
.admin-sidebar-logo small { display: block; font-size: 0.7rem; color: var(--red); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; color: var(--text-muted);
  font-size: 0.88rem; font-weight: 500;
  border-left: 3px solid transparent;
  transition: all .2s;
}
.admin-nav a:hover, .admin-nav a.active { color: var(--cream); background: var(--surface); border-left-color: var(--red); }
.admin-main { margin-left: 240px; flex: 1; padding: 32px; }
.admin-header { margin-bottom: 28px; }
.admin-header h1 { font-size: 1.6rem; color: var(--cream); }
.admin-header p { color: var(--text-muted); font-size: 0.9rem; }
.admin-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 24px; }
.admin-card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { font-size: 1rem; color: var(--cream); font-family: var(--font-body); font-weight: 600; }
.admin-card-body { padding: 20px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 10px 14px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); background: var(--bg2); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg2); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-green { background: rgba(39,174,96,0.12); color: #1e8449; }
.badge-red { background: rgba(192,57,43,0.12); color: #922b21; }
.badge-yellow { background: rgba(154,116,32,0.12); color: #7a5c18; }
.badge-blue { background: rgba(52,152,219,0.12); color: #2471a3; }
.stats-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.stat-card .val { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-card .lbl { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ================================================================
   CHECKOUT
   ================================================================ */
.checkout-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.2; }
.empty-state h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 10px; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 20px 0; margin-top: 80px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--cream); display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: var(--cream); margin-bottom: 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links a, .footer-contact p { display: block; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 0; text-align: center; font-size: 0.82rem; color: var(--text-muted); }

/* ================================================================
   RESPONSIVE — MOBILE NAV IS HERE
   ================================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-block { height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {

  /* Show hamburger */
  .nav-toggle {
    display: flex;
  }

  /* Hide desktop nav, reset to column */
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    padding: 0;
    margin: 0;
    gap: 0;
    margin-left: 0;
  }

  /* Show when toggled */
  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 0.95rem;
    color: #000;
    border-bottom: 1px solid var(--bg3);
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a:hover { background: var(--bg3); color: #000; }
  .main-nav a.active { background: #000; color: #fff; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 20px; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .invoice-container { padding: 24px; }
  .invoice-header { flex-direction: column; gap: 16px; }
}