/* ==========================================================================
   Virexa Sales LLC — shared stylesheet
   ========================================================================== */

:root {
  /* 3 brand colors */
  --brand-navy: #2a5c82;
  --brand-orange: #e85d04;
  --brand-graphite: #14181c;

  /* neutrals, contrast only */
  --white: #ffffff;
  --ink: #12171b;

  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(18, 23, 27, 0.10);
  --shadow-md: 0 10px 30px rgba(18, 23, 27, 0.12);
  --shadow-lg: 0 24px 60px rgba(18, 23, 27, 0.18);

  --transition-fast: 180ms ease;
  --transition: 240ms ease;

  --container: 1180px;
}

/* Light theme (default) */
:root,
body[data-theme="light"] {
  --bg: var(--white);
  --bg-alt: #f2f4f6;
  --surface: #ffffff;
  --surface-2: #f2f4f7;
  --text: var(--brand-graphite);
  --text-muted: #55636f;
  --accent: var(--brand-navy);
  --accent-strong: #1c435f;
  --accent-2: var(--brand-orange);
  --on-accent: var(--white);
  --on-accent-2: var(--ink);
  --border: rgba(20, 24, 28, 0.14);
  --border-soft: rgba(20, 24, 28, 0.08);
  --header-bg: rgba(255, 255, 255, 0.92);
  --overlay: rgba(15, 20, 24, 0.55);
}

/* Dark theme — same 3 brand colors, roles swapped */
body[data-theme="dark"] {
  --bg: var(--brand-graphite);
  --bg-alt: #1a1f24;
  --surface: #23292f;
  --surface-2: #2b323a;
  --text: var(--white);
  --text-muted: #b7c0c7;
  --accent: var(--brand-orange);
  --accent-strong: #ff7a1f;
  --accent-2: var(--brand-navy);
  --on-accent: var(--ink);
  --on-accent-2: var(--white);
  --border: rgba(255, 255, 255, 0.14);
  --border-soft: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(20, 24, 28, 0.9);
  --overlay: rgba(0, 0, 0, 0.65);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 64px 0;
}

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--accent-strong);
}

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none !important;
  box-shadow: none !important;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-word {
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-tag {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.main-nav a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.icon-btn:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

.theme-icon-dark { display: none; }
body[data-theme="dark"] .theme-icon-light { display: none; }
body[data-theme="dark"] .theme-icon-dark { display: block; }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--on-accent-2);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

/* ---------- Search bar ---------- */
.search-bar {
  max-height: 0;
  overflow: hidden;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-soft);
  transition: max-height var(--transition);
}

.search-bar.is-open {
  max-height: 96px;
}

.search-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 10px;
}

.search-bar input[type="search"] {
  flex: 1;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.search-bar input[type="search"]:focus {
  border-color: var(--accent);
}

.search-results-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.search-results-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.search-results-note a:hover {
  text-decoration: underline;
}

.no-results {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-graphite));
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}

.hero-media img,
.hero-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 28px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

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

/* ---------- Section headers ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}

.section-head p {
  color: var(--text-muted);
  margin: 8px 0 0;
  max-width: 55ch;
}

.section-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.section-link:hover {
  text-decoration: underline;
}

.section-intro {
  max-width: 62ch;
  color: var(--text-muted);
  margin: -12px 0 36px;
}

/* ---------- Product grid & cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-media {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.product-card h3 {
  font-size: 1.06rem;
  margin: 0;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}

.product-card-footer {
  margin-top: 10px;
}

.add-to-cart {
  width: 100%;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.add-to-cart:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.add-to-cart.is-added {
  background: var(--accent-2);
  color: var(--on-accent-2);
}

/* ---------- Shop filters ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--accent);
}

.filter-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.product-card[hidden] {
  display: none;
}

.subfilter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: -18px 0 32px;
}

.subfilter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.subfilter-btn:hover {
  border-color: var(--accent);
}

.subfilter-btn.is-active {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

/* ---------- Category grid ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-graphite));
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.category-card h3 {
  font-size: 1.02rem;
  margin: 0;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin: 0;
}

/* ---------- Why cards / value cards ---------- */
.why-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card,
.value-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}

.why-card .icon-wrap,
.value-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card svg,
.value-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.why-card h3,
.value-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.why-card p,
.value-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.93rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  font-size: 1rem;
}

.faq-item.is-open .faq-question .plus {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  margin: 0;
}

.faq-preview-cta {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 600;
}

.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 601;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-soft);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.15rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-soft);
}

.cart-item img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

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

.cart-item-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-item-remove:hover {
  background: var(--surface-2);
  color: var(--text);
}

.cart-empty {
  padding: 40px 22px;
  text-align: center;
  color: var(--text-muted);
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}

.cart-subtotal-value {
  color: var(--accent);
  font-size: 1.1rem;
}

.cart-drawer-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--border-soft);
}

.btn-checkout {
  text-decoration: line-through;
}

.checkout-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 10px 0 0;
}

/* ---------- Product page ---------- */
.product-page {
  padding: 48px 0 24px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-fast);
}

.gallery-main img.is-swapping {
  opacity: 0;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--surface-2);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition-fast);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--accent);
}

.product-info .product-category {
  font-size: 0.78rem;
}

.product-info h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin: 8px 0 6px;
}

.product-info .product-price {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}

.product-info .add-to-cart {
  width: auto;
  padding: 14px 32px;
  font-size: 1rem;
}

.product-desc {
  margin-top: 34px;
  color: var(--text-muted);
}

.product-desc p {
  margin-bottom: 1.1em;
}

.feature-list {
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.95rem;
}

.feature-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.product-info h2.subhead {
  font-size: 1.1rem;
  margin-top: 30px;
}

.related-section {
  margin-top: 70px;
}

/* ---------- About page ---------- */
.mission-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.mission-block h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.mission-block .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-block img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.2;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.split-block h2 {
  font-size: 1.8rem;
}

.split-block.reverse {
  direction: rtl;
}

.split-block.reverse > * {
  direction: ltr;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
}

.form-note {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  display: none;
}

.form-note.is-visible {
  display: block;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: fit-content;
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card a {
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

.map-placeholder {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.map-placeholder img,
.map-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Policies page ---------- */
.policy-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: sticky;
  top: 78px;
  background: var(--bg);
  padding: 10px 0;
  z-index: 10;
}

.policy-section {
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
  scroll-margin-top: 140px;
}

.policy-section:first-of-type {
  border-top: none;
}

.policy-section h2 {
  font-size: 1.5rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-muted);
}

.policy-section ul {
  margin: 12px 0;
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-disclaimer {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px dashed var(--border);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--surface-2);
  margin-top: 60px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 34ch;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 56px 0 12px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.page-hero p {
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner,
  .product-layout,
  .split-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-block.reverse {
    direction: ltr;
  }

  .split-block img {
    order: -1;
  }

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

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    z-index: 400;
  }

  .main-nav.is-open {
    max-height: 320px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 24px 20px;
    gap: 2px;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .product-grid,
  .why-grid,
  .value-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .search-bar-inner {
    flex-wrap: wrap;
  }

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

  section {
    padding: 48px 0;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
