/* ─── SITE NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-brand:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  overflow-x: auto;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: var(--bg-elevated);
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  margin-left: auto;
}

.nav-cart:hover { color: var(--fg); background: var(--bg-elevated); }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ─── SHOP MAIN WRAPPER ─── */
.shop-main {
  padding-top: 64px;
  min-height: 100vh;
}

/* ─── SHOP HERO ─── */
.shop-hero {
  padding: 5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.shop-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,138,58,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.shop-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 1rem 0 0.75rem;
  line-height: 1.05;
}

.shop-hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
}

/* ─── CATEGORY FILTERS ─── */
.shop-content { padding: 2.5rem 2rem 5rem; }
.shop-inner { max-width: 1200px; margin: 0 auto; }

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-pill {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--green-bright);
  color: var(--fg);
}

.filter-pill.active {
  background: var(--green-muted);
  border-color: var(--green-bright);
  color: var(--fg);
}

.filter-count {
  font-size: 0.7rem;
  color: var(--fg-dim);
  margin-left: 0.25rem;
}

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

.product-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-top: 4rem;
}

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

.product-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-2px);
}

.product-card-img-wrap { display: block; text-decoration: none; }

.product-card-img {
  position: relative;
  height: 220px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder-img {
  font-size: 4rem;
  opacity: 0.6;
  filter: grayscale(0.3);
}

.product-placeholder-img.sm { font-size: 2rem; }

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.product-badge-lg { font-size: 0.7rem; padding: 0.25rem 0.75rem; }

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.product-category {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.product-thca {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--accent); }

.product-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}

.product-compare {
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-decoration: line-through;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bg-deep);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

.btn-add-cart {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--accent);
  color: var(--bg-deep);
}

/* ─── PRODUCT DETAIL ─── */
.product-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-bottom: 2.5rem;
}

.breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: var(--fg-dim); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.product-detail-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-placeholder {
  font-size: 8rem;
  opacity: 0.5;
}

.coa-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.coa-icon { font-size: 1.5rem; }

.coa-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.coa-text strong { font-size: 0.9rem; color: var(--fg); }
.coa-text span { font-size: 0.75rem; color: var(--fg-muted); }

.coa-link {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.coa-pending { font-size: 0.75rem; color: var(--green-bright); }

.product-detail-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  margin: 0.75rem 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.product-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.stat-chip {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  min-width: 70px;
}

.stat-chip .stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 0.2rem;
}

.stat-chip .stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-chip .stat-val.accent { color: var(--accent); }

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-main {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}

.price-compare {
  font-size: 1.1rem;
  color: var(--fg-dim);
  text-decoration: line-through;
}

.price-save {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-bright);
  background: var(--green-subtle);
  border: 1px solid var(--green-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Quantity selector */
.add-to-cart-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-selector.sm { border-radius: 6px; }

.qty-btn {
  background: var(--bg-elevated);
  border: none;
  color: var(--fg-muted);
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.qty-btn:hover { background: var(--bg-card); color: var(--fg); }

.qty-input {
  width: 50px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.qty-display {
  width: 40px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  padding: 0 0.5rem;
}

.btn-atc { flex: 1; }

.shipping-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.product-description {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.product-description h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.product-description p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--fg-dim);
}

.trust-item span { color: var(--green-bright); font-weight: 700; }

/* ─── RELATED PRODUCTS ─── */
.related-products h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* ─── CART ─── */
.cart-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 6rem;
}

.cart-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.cart-count-title {
  color: var(--fg-dim);
  font-size: 1.2rem;
}

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.cart-empty-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: 0.4; }

.cart-empty h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.cart-empty p {
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:first-child { border-top: 1px solid var(--border); }

.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
  margin-bottom: 0.3rem;
}

.cart-item-name:hover { color: var(--accent); }

.cart-item-meta, .cart-item-unit {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-subtotal {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  min-width: 70px;
  text-align: right;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--fg-dim);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.25rem;
  transition: color 0.15s;
}

.cart-remove:hover { color: #e55; }

/* Cart summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}

.cart-summary h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.summary-row.summary-total {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0;
}

.summary-divider {
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.free-ship { color: var(--green-bright); font-weight: 600; }
.free-ship-note { font-size: 0.75rem; color: var(--fg-dim); margin-bottom: 0.75rem; }

.btn-checkout {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem;
  font-size: 0.95rem;
}

.btn-continue {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-top: 0.75rem;
}

.btn-continue:hover { color: var(--fg); }

.cart-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ─── ORDER CONFIRMATION ─── */
.confirm-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
  text-align: center;
}

.confirm-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.confirm-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.confirm-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.confirm-order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.confirm-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.confirm-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 0.3rem;
}

.confirm-order-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  font-feature-settings: 'tnum';
}

.confirm-status.confirmed {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: var(--green-subtle);
  border: 1px solid var(--green-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.confirm-items { margin-bottom: 1.5rem; }

.confirm-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.confirm-item:last-child { border-bottom: none; }
.confirm-item-name { flex: 1; color: var(--fg); }
.confirm-item-qty { color: var(--fg-dim); min-width: 30px; }
.confirm-item-price { font-family: 'Syne', sans-serif; font-weight: 600; color: var(--fg); }

.confirm-totals { margin-top: 1rem; }

.confirm-next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.next-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-icon { font-size: 1.5rem; margin-top: 0.1rem; flex-shrink: 0; }

.next-step strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.next-step p { font-size: 0.85rem; color: var(--fg-muted); }

.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ERROR PAGE ─── */
.error-wrap {
  max-width: 500px;
  margin: 6rem auto;
  padding: 2rem;
  text-align: center;
}

.error-wrap h1 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 1rem 0 2rem;
}

/* ─── ALERTS ─── */
.alert {
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.alert-warn {
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.3);
  color: var(--accent);
}

/* ─── CART TOAST ─── */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--green-bright);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--fg);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(74,138,58,0.2);
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── AGE GATE ─── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 10, 0.96);
  backdrop-filter: blur(8px);
}

.age-gate-modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.age-gate-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.age-gate-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.age-gate-leaf { font-size: 3rem; margin-bottom: 1rem; }

.age-gate-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
}

.age-gate-inner p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.age-gate-actions .btn-primary { width: 100%; padding: 1rem; font-size: 1rem; }
.age-gate-actions .btn-ghost { width: 100%; padding: 1rem; font-size: 0.9rem; }

.age-gate-legal {
  font-size: 0.7rem;
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0;
}

/* ─── SHOP FOOTER ─── */
.shop-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  padding: 4rem 2rem 2rem;
}

.shop-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--fg); }

.footer-legal-text {
  font-size: 0.78rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-align: center;
}

/* ─── EMPTY STATE ─── */
.empty-state {
  padding: 4rem;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.empty-state a { color: var(--accent); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .shop-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .cart-item { grid-template-columns: 60px 1fr; gap: 0.75rem; }
  .cart-item-controls { grid-column: 1 / -1; justify-content: space-between; }
  .footer-links { grid-template-columns: 1fr; }
  .add-to-cart-form { flex-direction: column; }
  .btn-atc { width: 100%; }
}
