:root {
  --bg: #0a0608;
  --bg-soft: #100609;
  --surface: #180b0d;
  --surface-2: #200e11;
  --text: #f5ede8;
  --text-dim: #c9a89e;
  --muted: #8a6460;
  --line: rgba(200, 60, 60, 0.13);
  --accent: #cc1a1a;
  --accent-2: #991010;
  --gradient: linear-gradient(135deg, #cc1a1a 0%, #7a0a0a 100%);
  --accent-soft: rgba(204, 26, 26, 0.11);
  --shadow: 0 24px 56px rgba(30, 0, 0, 0.7);
  --shadow-sm: 0 8px 20px rgba(30, 0, 0, 0.5);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 65% 45% at 75% -5%, rgba(204, 26, 26, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at -5% 70%, rgba(122, 10, 10, 0.05) 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea, select, button {
  font: inherit;
}

/* ── Layout ────────────────────────────────────── */
.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ── Site header ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(1.6);
  background: rgba(10, 6, 8, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

/* ── Brand ─────────────────────────────────────── */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(204, 26, 26, 0.4);
  flex-shrink: 0;
}

.brand-lockup h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.25rem;
  display: block;
}

/* ── Navigation ────────────────────────────────── */
.header-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-links > a:not(.primary-btn):not(.secondary-btn) {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: color 150ms;
}

.header-links > a:not(.primary-btn):not(.secondary-btn):hover {
  color: var(--text);
}

/* ── Buttons ────────────────────────────────────── */
.primary-btn,
.secondary-btn,
.tab-toggle,
#logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 10px;
  padding: 0.62rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 140ms, box-shadow 140ms, opacity 140ms, background 140ms;
  white-space: nowrap;
  text-decoration: none;
}

.primary-btn {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 5px 18px rgba(204, 26, 26, 0.35);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(204, 26, 26, 0.45);
}

.secondary-btn,
.tab-toggle,
#logout-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  border: 1px solid var(--line);
}

.secondary-btn:hover,
.tab-toggle:hover,
#logout-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.tab-toggle.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(204, 26, 26, 0.3);
}

/* ── Hero ───────────────────────────────────────── */
.hero-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  padding: 1.5rem 0 1.25rem;
}

.hero-copy,
.hero-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gradient);
  border-radius: var(--radius) var(--radius) 0 0;
}

.hero-copy {
  background: rgba(24, 11, 13, 0.65);
  backdrop-filter: blur(16px);
  padding: 2.25rem;
}

.hero-copy h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-copy h2 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy > p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.75rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero-meta div {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

.hero-panel {
  background: rgba(24, 11, 13, 0.65);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(204, 26, 26, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.hero-panel-inner {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  flex: 1;
}

.mini-product-stack {
  display: grid;
  gap: 0.55rem;
}

.mini-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  font-size: 0.87rem;
}

.mini-product strong {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.mini-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.85rem 0 0;
}

/* ── Feature strip ─────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}

.feature-strip article {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(24, 11, 13, 0.5);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.feature-strip article h3 {
  margin: 0.5rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-strip article p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── Section blocks ────────────────────────────── */
.section-block {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(24, 11, 13, 0.5);
  border: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  max-width: 380px;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── Product grid ──────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(204, 26, 26, 0.2);
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 1.1rem;
}

.product-body h3 {
  margin: 0.3rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}

.product-body > p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.product-meta strong {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(204, 26, 26, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Reviews ────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-grid article {
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.review-grid article > p:not(.stars) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.55rem;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  padding: 1.5rem 0 2.5rem;
  margin-top: 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-inner p {
  color: var(--muted);
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: color 150ms, background 150ms;
}

.footer-links a:hover {
  color: var(--text);
  background: var(--surface);
}

/* ── Auth page ──────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-shell {
  padding: 1.75rem 0 2.5rem;
  flex: 1;
}

.auth-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: rgba(24, 11, 13, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gradient);
}

.auth-copy h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.2;
}

.auth-copy > p:last-of-type,
.auth-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9rem;
  margin: 0;
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.auth-benefits span {
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.auth-forms {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
}

.toggle-row {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.22rem;
}

.tab-toggle {
  flex: 1;
  text-align: center;
  border-radius: 10px;
  border: none;
  padding: 0.55rem 1rem;
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
}

.auth-form.active {
  display: flex;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  font-size: 0.83rem;
  color: var(--muted);
}

/* ── Form inputs ────────────────────────────────── */
.auth-form input,
.product-form input,
.product-form textarea,
.product-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.72rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
}

.auth-form input:focus,
.product-form input:focus,
.product-form textarea:focus,
.product-form select:focus {
  border-color: rgba(204, 26, 26, 0.4);
  box-shadow: 0 0 0 3px rgba(204, 26, 26, 0.1);
}

.auth-form input::placeholder,
.product-form input::placeholder,
.product-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.product-form select option {
  background: var(--surface);
  color: var(--text);
}

input[type="file"] {
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.84rem;
  border: none;
  background: transparent;
}

input[type="file"]::file-selector-button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.38rem 0.75rem;
  margin-right: 0.7rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  transition: background 150ms;
}

input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.product-form label:has(input[type="checkbox"]) {
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ── Admin page ─────────────────────────────────── */
.admin-page {
  min-height: 100vh;
}

.admin-shell {
  padding: 1.5rem 0 2.5rem;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-hero h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

#admin-status {
  color: var(--muted);
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
}

.admin-stat-row {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.stat-card {
  min-width: 130px;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(24, 11, 13, 0.7);
  border: 1px solid var(--line);
}

.stat-card > span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.stat-card > strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 0.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1rem;
}

.panel-card {
  border-radius: var(--radius);
  background: rgba(24, 11, 13, 0.65);
  border: 1px solid var(--line);
  padding: 1.35rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gradient);
}

.panel-head {
  margin-bottom: 1.1rem;
}

.panel-head h3 {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}

/* ── Data table ─────────────────────────────────── */
.table-shell {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.data-table th {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.data-table td {
  padding: 0.65rem 0.6rem;
  border-bottom: 1px solid rgba(200, 60, 60, 0.07);
  color: var(--text-dim);
}

.data-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ── Product form ────────────────────────────────── */
.product-form {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.product-form label {
  color: var(--muted);
  font-size: 0.81rem;
  display: grid;
  gap: 0.32rem;
}

.product-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  gap: 0.6rem;
}

.form-note {
  color: var(--accent);
  font-size: 0.82rem;
  margin: 0.1rem 0 0;
  min-height: 1.1em;
}

/* ── Product list in admin ───────────────────────── */
.product-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.product-editor-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: border-color 150ms;
}

.product-editor-card:hover {
  border-color: rgba(204, 26, 26, 0.2);
}

.product-editor-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

.product-editor-card h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-editor-card > div > p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0.2rem 0 0;
}

.image-preview {
  display: none;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

/* ── Upload zone ─────────────────────────────────── */
.upload-zone {
  position: relative;
  border: 2px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
  background: rgba(255, 255, 255, 0.02);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: rgba(204, 26, 26, 0.45);
  background: var(--accent-soft);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
}

.upload-zone-hint strong {
  display: block;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  pointer-events: none;
}

.upload-zone-hint span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  pointer-events: none;
}

/* ── Products page ──────────────────────────────── */
.products-page {
  min-height: 100vh;
}

.products-shell {
  padding: 1.75rem 0 3rem;
}

.products-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.products-page-header h1 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

.product-count-chip {
  display: inline-flex;
  margin-left: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(204, 26, 26, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.search-bar {
  position: relative;
  flex-shrink: 0;
}

.search-bar input {
  width: 260px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.68rem 0.9rem 0.68rem 2.5rem;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}

.search-bar input:focus {
  border-color: rgba(204, 26, 26, 0.4);
  box-shadow: 0 0 0 3px rgba(204, 26, 26, 0.1);
}

.search-bar input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.no-results {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
  font-size: 0.95rem;
}

/* ── Cart badge on nav button ───────────────────── */
.cart-nav-btn {
  position: relative;
  padding: 0.62rem 0.85rem;
  gap: 0.45rem;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--bg);
}

.cart-badge.visible {
  display: flex;
}

/* ── Cart overlay ───────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms;
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Cart drawer ────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-drawer-header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 150ms, background 150ms;
}

.cart-close-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  font-size: 0.9rem;
  gap: 0.5rem;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

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

.cart-item-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-item-price {
  display: block;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 0.25rem;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

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

.qty-btn {
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--text);
  padding: 0.28rem 0.55rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 150ms;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-value {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 1.6rem;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0;
  transition: color 150ms;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item-remove:hover {
  color: #f87171;
}

.cart-footer {
  padding: 1.25rem 1.4rem;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-total-amount {
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.checkout-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

/* ── Responsive ─────────────────────────────────── */

/* ── Tablet (≤960px) ────────────── */
@media (max-width: 960px) {
  /* Hero stacks but both panels remain visible */
  .hero-section {
    grid-template-columns: 1fr;
  }

  /* 2-column product grid instead of collapsing to 1 */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2-column reviews */
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature strip stays 3-column — matches desktop */
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .feature-strip article {
    padding: 1rem;
  }

  /* Hero meta stays 3-column */
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-grid,
  .auth-card {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .admin-hero,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Phone (≤640px) ─────────────── */
@media (max-width: 640px) {
  .shell {
    width: calc(100% - 1.5rem);
  }

  /* Header: brand lockup on top row, nav on second row */
  .header-inner {
    padding: 0.75rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .brand-lockup {
    flex: 1 1 100%;
  }

  .brand-lockup h1 {
    font-size: 0.9rem;
  }

  .header-links {
    flex: 1 1 100%;
    gap: 0.35rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .header-links::-webkit-scrollbar {
    display: none;
  }

  .header-links > a:not(.primary-btn):not(.secondary-btn),
  .header-links > button:not(.primary-btn):not(.secondary-btn):not(.cart-nav-btn) {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
  }

  .primary-btn,
  .secondary-btn,
  .tab-toggle {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  /* Hero: compact padding */
  .hero-copy {
    padding: 1.5rem;
  }

  .hero-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Hero meta: 3 columns, compact */
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .hero-meta div {
    padding: 0.65rem 0.55rem;
  }

  .hero-meta strong {
    font-size: 0.78rem;
  }

  .hero-meta span {
    font-size: 0.68rem;
  }

  /* Product grid: 2 columns on phone */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .product-body {
    padding: 0.85rem;
  }

  .product-body h3 {
    font-size: 0.88rem;
  }

  .product-body > p {
    font-size: 0.78rem;
  }

  .product-meta strong {
    font-size: 0.95rem;
  }

  /* Feature strip: 3 columns, very compact */
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .feature-strip article {
    padding: 0.85rem 0.7rem;
  }

  .feature-strip article h3 {
    font-size: 0.88rem;
    margin: 0.3rem 0 0.3rem;
  }

  .feature-strip article p:last-child {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  /* Reviews: single column on phone */
  .review-grid {
    grid-template-columns: 1fr;
  }

  /* Section block padding */
  .section-block {
    padding: 1.1rem;
  }

  .cta-row,
  .form-actions,
  .admin-stat-row,
  .toggle-row {
    flex-wrap: wrap;
  }

  /* Checkout layout: stack on phone */
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: 2;
  }

  .checkout-form-section {
    order: 1;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Checkout page ─────────────────────────────── */
.checkout-shell {
  padding: 2rem 0 4rem;
}

.checkout-empty {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 4rem 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.checkout-summary,
.checkout-form-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.checkout-summary::before,
.checkout-form-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gradient);
  border-radius: var(--radius) var(--radius) 0 0;
}

.checkout-summary h2,
.checkout-form-section h2 {
  margin: 0.3rem 0 1.25rem;
  font-size: 1.3rem;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.summary-item-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.summary-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.summary-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.summary-item-qty {
  color: var(--muted);
  font-size: 0.8rem;
}

.summary-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.summary-totals {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.summary-row.summary-total {
  color: var(--text);
  font-size: 1rem;
  margin-top: 0.35rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}

.muted-text {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-group legend {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  width: 100%;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.8rem;
}

.stripe-placeholder {
  border: 1px dashed rgba(200, 60, 60, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(204, 26, 26, 0.04);
  padding: 1.5rem;
}

.stripe-placeholder-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.stripe-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
}

.checkout-submit-btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.checkout-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Address autocomplete dropdown ─────────────────── */
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface-2);
  border: 1px solid rgba(200, 60, 60, 0.25);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: hidden;
  max-height: 260px;
  overflow-y: auto;
}

.suggestion-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.7rem 0.9rem;
  font-size: 0.84rem;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background 120ms, color 120ms;
  line-height: 1.4;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item:focus,
.suggestion-item.highlighted {
  background: var(--accent-soft);
  color: var(--text);
  outline: none;
}

/* ── Announcement bar ──────────────────────────── */
.announcement-bar {
  background: var(--gradient);
  padding: 0.55rem 1rem;
  text-align: center;
}

.announcement-bar p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ── Hero full-width ────────────────────────────── */
.hero-full {
  border-bottom: 1px solid var(--line);
  padding-top: 4rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(204, 26, 26, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(122, 10, 10, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-full-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3.5rem;
  position: relative;
}

.hero-full-copy {
  max-width: 620px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 1.1rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 520px;
}

/* Molecule decoration */
.hero-molecule {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  flex-shrink: 0;
}

.molecule-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204, 26, 26, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 { width: 80px; height: 80px; animation-delay: 0s; }
.ring-2 { width: 160px; height: 160px; animation-delay: 0.8s; border-color: rgba(204, 26, 26, 0.12); }
.ring-3 { width: 260px; height: 260px; animation-delay: 1.6s; border-color: rgba(204, 26, 26, 0.07); }

@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

.molecule-core {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(204, 26, 26, 0.5);
}

.molecule-node {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.n1 { top: 15%; left: 50%; transform: translateX(-50%); }
.n2 { top: 50%; right: 12%; transform: translateY(-50%); }
.n3 { bottom: 18%; left: 30%; }
.n4 { bottom: 18%; right: 30%; }
.n5 { top: 50%; left: 12%; transform: translateY(-50%); }

/* Hero stat strip */
.hero-stat-strip {
  border-top: 1px solid var(--line);
  background: rgba(24, 11, 13, 0.6);
  backdrop-filter: blur(12px);
}

.hero-stat-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
}

.hero-stat-item strong {
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-item span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Product card enhancements ──────────────────── */
.product-media {
  position: relative;
}

.product-category-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 6, 8, 0.82);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.stars-small {
  color: #e8a030;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.rating-count {
  font-size: 0.72rem;
  color: var(--muted);
}

.stock-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.stock-pill.in-stock {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.stock-pill.out-of-stock {
  background: rgba(204, 26, 26, 0.1);
  color: var(--accent);
  border: 1px solid rgba(204, 26, 26, 0.2);
}

/* ── Section heading center variant ────────────── */
.section-heading-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-heading-center h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.75rem;
}

.section-heading-center p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Process section ────────────────────────────── */
.process-section {
  padding: 3.5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms, transform 200ms;
}

.process-step::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gradient);
  border-radius: var(--radius) var(--radius) 0 0;
}

.process-step:hover {
  border-color: rgba(204, 26, 26, 0.25);
  transform: translateY(-2px);
}

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Buyer protection grid ──────────────────────── */
.protection-section {
  padding: 3.5rem 0;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.protection-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.protection-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(204, 26, 26, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.protection-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.protection-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Reviews enhanced ───────────────────────────── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  color: #e8a030;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.review-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.review-author strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.verified-badge {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 600;
}

/* ── FAQ section ────────────────────────────────── */
.faq-section {
  padding: 3.5rem 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 150ms;
}

.faq-item[open] {
  border-color: rgba(204, 26, 26, 0.3);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  user-select: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 200ms;
  line-height: 1;
}

.faq-item[open] .faq-chevron {
  transform: rotate(90deg);
}

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* ── Footer enhanced ────────────────────────────── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0.4rem 0 0;
}

.footer-disclaimer {
  margin-top: 0.85rem !important;
  font-size: 0.75rem !important;
  opacity: 0.65;
  font-style: italic;
}

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

.footer-col-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.footer-cols a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.2rem 0;
  transition: color 150ms;
}

.footer-cols a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ── Section spacing ────────────────────────────── */
.section-block {
  margin-top: 2rem;
}

/* ── Responsive additions for new sections ──────── */
@media (max-width: 960px) {
  .hero-full-inner {
    grid-template-columns: 1fr;
  }

  .hero-molecule {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .protection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-full {
    padding-top: 2rem;
  }

  .hero-full-inner {
    padding-bottom: 2rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-stat-inner {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-item {
    flex: 0 1 40%;
  }

  .protection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

