@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Architects+Daughter&family=Libre+Franklin:wght@400;500;600&display=swap');

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

:root {
  --bg: #132a1f;
  --bg-card: #1a3528;
  --cream: #f2ede3;
  --gold: #9B804A;
  --gold-light: #dcc9a3;
  --gold-dark: #5c4923;
  --white: #ffffff;
  --text-muted: #a0a89e;
  --danger: #c0392b;
  --success: #27ae60;
  --font-head: 'Handlee', cursive;
  --font-body: 'Architects Daughter', cursive;
  --font-ui: 'Libre Franklin', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-body); font-size: 15px; line-height: 1.6; min-height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 0.75rem; }
.ui { font-family: var(--font-ui); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: var(--font-ui);
  font-size: 0.95rem; font-weight: 600; transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(155,128,74,0.4); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-ghost { color: var(--cream); border: 2px solid rgba(242,237,227,0.3); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #a93226; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg); border-bottom: 1px solid rgba(242,237,227,0.08);
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { font-family: var(--font-head); font-size: 1.2rem; color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-family: var(--font-ui); font-size: 0.9rem; color: var(--cream); opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cart { position: relative; padding: 8px; color: var(--cream); }
.nav-cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui);
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s; }

/* ── Hero ── */
.hero {
  background: var(--bg); padding: 80px 24px;
  text-align: center; border-bottom: 1px solid rgba(242,237,227,0.08);
}
.hero-subtitle { font-family: var(--font-ui); color: var(--gold-light); font-size: 1rem; margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero h1 { color: var(--cream); margin-bottom: 16px; }
.hero p { color: rgba(242,237,227,0.7); font-family: var(--font-ui); max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section ── */
.section { padding: 64px 24px; }
.section-light { background: var(--cream); color: var(--bg); }
.section-light h2, .section-light h3 { color: var(--bg); }
.section-light p { color: #3a4a3e; }
.section-title { text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; font-family: var(--font-ui); color: var(--text-muted); margin-bottom: 40px; }
.section-light .section-sub { color: #6a7a6e; }
.container { max-width: 1160px; margin: 0 auto; }

/* ── 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(--radius);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(242,237,227,0.06);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-img { aspect-ratio: 1; overflow: hidden; background: #1f3d2e; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 16px; }
.product-card-name { font-family: var(--font-head); font-size: 1rem; margin-bottom: 6px; line-height: 1.3; }
.product-card-price { font-family: var(--font-ui); color: var(--gold); font-weight: 600; font-size: 1rem; }
.product-card-badge {
  display: inline-block; font-family: var(--font-ui); font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-custom { background: rgba(155,128,74,0.2); color: var(--gold); }
.badge-low { background: rgba(192,57,43,0.2); color: #e74c3c; }
.section-light .product-card { background: var(--white); border-color: rgba(19,42,31,0.08); }
.section-light .product-card-name { color: var(--bg); }

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-images { position: sticky; top: 90px; }
.product-main-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--bg-card); margin-bottom: 12px; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; background: var(--bg-card);
}
.product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { margin-bottom: 12px; }
.product-price { font-size: 2rem; font-family: var(--font-ui); font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.product-desc { color: rgba(242,237,227,0.8); margin-bottom: 24px; font-family: var(--font-ui); line-height: 1.7; }
.product-variants { margin-bottom: 24px; }
.product-variants label { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 10px; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  padding: 8px 16px; border-radius: var(--radius-sm); font-family: var(--font-ui); font-size: 0.85rem;
  border: 1px solid rgba(242,237,227,0.25); color: var(--cream); transition: all 0.2s;
}
.variant-btn.active, .variant-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(155,128,74,0.1); }
.product-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.qty-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(242,237,227,0.3); color: var(--cream); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 600; min-width: 32px; text-align: center; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-stock { font-family: var(--font-ui); font-size: 0.85rem; margin-top: 12px; }
.in-stock { color: var(--success); }
.low-stock { color: #e67e22; }
.out-stock { color: var(--danger); }

/* ── Cart ── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  background: var(--bg-card); border-radius: var(--radius); padding: 16px;
  display: flex; gap: 16px; align-items: center; border: 1px solid rgba(242,237,227,0.06);
}
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: #1f3d2e; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.cart-item-variant { font-family: var(--font-ui); font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { font-family: var(--font-ui); font-weight: 600; color: var(--gold); }
.cart-item-remove { color: var(--text-muted); font-size: 1.2rem; padding: 4px 8px; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--danger); }
.cart-summary { background: var(--bg-card); border-radius: var(--radius); padding: 24px; border: 1px solid rgba(242,237,227,0.06); }
.cart-summary h3 { margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-family: var(--font-ui); padding: 8px 0; border-bottom: 1px solid rgba(242,237,227,0.06); }
.cart-summary-total { font-weight: 700; font-size: 1.1rem; color: var(--gold); border-bottom: none; padding-top: 16px; }
.cart-notes { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(242,237,227,0.15); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--cream); font-family: var(--font-body); font-size: 0.9rem; resize: vertical; margin-top: 16px; margin-bottom: 16px; }
.cart-notes::placeholder { color: var(--text-muted); }
.cart-notes:focus { outline: none; border-color: var(--gold); }
.cart-empty { text-align: center; padding: 64px 24px; }
.cart-empty h2 { margin-bottom: 12px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 24px; font-family: var(--font-ui); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(242,237,227,0.2);
  border-radius: var(--radius-sm); padding: 12px 16px; color: var(--cream);
  font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s;
  color-scheme: dark;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B804A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-select option { background: var(--bg); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }
.form-error { font-family: var(--font-ui); font-size: 0.8rem; color: var(--danger); margin-top: 6px; display: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.section-light .form-input, .section-light .form-select, .section-light .form-textarea { background: var(--white); border-color: rgba(19,42,31,0.2); color: var(--bg); color-scheme: light; }
.section-light .form-select option { background: var(--white); color: var(--bg); }
.section-light .form-input::placeholder, .section-light .form-textarea::placeholder { color: #8a9a8e; }
.section-light .form-input:focus, .section-light .form-select:focus, .section-light .form-textarea:focus { border-color: var(--gold); }
.section-light .form-group label { color: var(--gold-dark); }

/* ── Social Strip ── */
.social-strip { background: var(--bg-card); padding: 48px 24px; text-align: center; }
.social-strip h2 { margin-bottom: 8px; color: var(--gold); }
.social-strip p { color: rgba(242,237,227,0.6); font-family: var(--font-ui); margin-bottom: 28px; }
.social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px; border: 1px solid rgba(242,237,227,0.2);
  font-family: var(--font-ui); font-size: 0.9rem; color: var(--cream); transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 18px; height: 18px; }

/* ── CTA Banner ── */
.cta-banner { background: var(--gold); padding: 56px 24px; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-family: var(--font-ui); margin-bottom: 28px; }
.cta-banner .btn { background: var(--white); color: var(--gold-dark); }
.cta-banner .btn:hover { background: var(--cream); }

/* ── Footer ── */
.footer { background: #0d1f16; padding: 40px 24px; border-top: 1px solid rgba(242,237,227,0.06); }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.footer-brand { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 8px; }
.footer-tagline { font-family: var(--font-ui); font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; }
.footer-links a { font-family: var(--font-ui); font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { max-width: 1160px; margin: 20px auto 0; padding-top: 20px; border-top: 1px solid rgba(242,237,227,0.06); font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ── Success Page ── */
.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.success-card { text-align: center; max-width: 480px; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h1 { margin-bottom: 12px; }
.success-card p { color: rgba(242,237,227,0.7); font-family: var(--font-ui); margin-bottom: 8px; }

/* ── Toast ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--bg-card); color: var(--cream); padding: 14px 20px; border-radius: var(--radius-sm);
  font-family: var(--font-ui); font-size: 0.9rem; border-left: 4px solid var(--gold);
  box-shadow: var(--shadow); animation: slideIn 0.3s ease; max-width: 320px;
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { transform: translateX(100%); opacity: 0; } }

/* ── Page Header ── */
.page-header { padding: 48px 24px 32px; text-align: center; border-bottom: 1px solid rgba(242,237,227,0.08); }
.page-header h1 { margin-bottom: 8px; }
.page-header p { font-family: var(--font-ui); color: var(--text-muted); }

/* ── Breadcrumb ── */
.breadcrumb { font-family: var(--font-ui); font-size: 0.82rem; color: var(--text-muted); padding: 16px 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ── Loading ── */
.loading { text-align: center; padding: 48px; font-family: var(--font-ui); color: var(--text-muted); }
.spinner { display: inline-block; width: 32px; height: 32px; border: 3px solid rgba(155,128,74,0.2); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin-bottom: 12px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Admin ── */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: #0d1f16; padding: 0; border-right: 1px solid rgba(242,237,227,0.06); position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar-logo { padding: 20px; border-bottom: 1px solid rgba(242,237,227,0.06); font-family: var(--font-head); font-size: 1rem; }
.admin-nav { list-style: none; padding: 12px 0; }
.admin-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; font-family: var(--font-ui); font-size: 0.88rem; color: rgba(242,237,227,0.6);
  transition: all 0.2s;
}
.admin-nav li a:hover { color: var(--cream); background: rgba(242,237,227,0.05); }
.admin-nav li a.active { color: var(--gold); background: rgba(155,128,74,0.1); border-left: 3px solid var(--gold); }
.admin-nav li a svg { width: 16px; height: 16px; flex-shrink: 0; }
.admin-main { padding: 32px; overflow-y: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.admin-header h1 { font-size: 1.6rem; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--bg-card); border-radius: var(--radius); padding: 20px; border: 1px solid rgba(242,237,227,0.06); }
.stat-label { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.stat-value { font-family: var(--font-ui); font-size: 2rem; font-weight: 700; color: var(--gold); }
.admin-table-wrap { background: var(--bg-card); border-radius: var(--radius); border: 1px solid rgba(242,237,227,0.06); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 14px 16px; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid rgba(242,237,227,0.06); }
.admin-table td { padding: 14px 16px; font-family: var(--font-ui); font-size: 0.88rem; border-bottom: 1px solid rgba(242,237,227,0.04); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(242,237,227,0.02); }
.admin-table .product-thumb-sm { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.status-paid { background: rgba(39,174,96,0.15); color: #27ae60; }
.status-pending { background: rgba(230,126,34,0.15); color: #e67e22; }
.status-new { background: rgba(155,128,74,0.15); color: var(--gold); }
.status-active { background: rgba(39,174,96,0.15); color: #27ae60; }
.status-inactive { background: rgba(192,57,43,0.15); color: var(--danger); }
.admin-actions { display: flex; gap: 8px; }

/* ── Modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg-card); border-radius: var(--radius); padding: 28px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; border: 1px solid rgba(242,237,227,0.08); transform: translateY(20px); transition: transform 0.2s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.2rem; }
.modal-close { color: var(--text-muted); font-size: 1.4rem; line-height: 1; padding: 4px 8px; transition: color 0.2s; }
.modal-close:hover { color: var(--cream); }
.modal-footer { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(242,237,227,0.06); }

/* ── Image Upload ── */
.upload-area {
  border: 2px dashed rgba(242,237,227,0.2); border-radius: var(--radius); padding: 32px;
  text-align: center; cursor: pointer; transition: border-color 0.2s;
}
.upload-area:hover, .upload-area.drag-over { border-color: var(--gold); }
.upload-area p { font-family: var(--font-ui); color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; }
.upload-area input { display: none; }
.image-preview-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.image-preview-item { position: relative; width: 80px; height: 80px; }
.image-preview-item img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.image-preview-remove { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: var(--danger); color: white; border-radius: 50%; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ── Admin Login ── */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card { background: var(--bg-card); border-radius: var(--radius); padding: 40px; width: 100%; max-width: 400px; border: 1px solid rgba(242,237,227,0.08); text-align: center; }
.login-card h1 { font-size: 1.6rem; margin-bottom: 6px; }
.login-card p { font-family: var(--font-ui); color: var(--text-muted); margin-bottom: 28px; font-size: 0.88rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-images { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-sidebar.open { display: block; position: fixed; z-index: 200; width: 220px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); padding: 16px 24px; border-bottom: 1px solid rgba(242,237,227,0.08); z-index: 99; }
  .hero { padding: 56px 24px; }
  .section { padding: 48px 16px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th, .admin-table td { padding: 10px; }
}
