/* =========================================================================
   KOVULT.COM — styles.css
   Apple-inspired premium design · deep graphite + warm gold
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --color-bg: #f6f6f4;
  --color-surface: #ffffff;
  --color-surface-2: #f0efec;
  --color-text: #14151a;
  --color-muted: #6b6c72;
  --color-faint: #9a9aa0;
  --color-dark: #15161b;
  --color-dark-2: #1d1f26;
  --color-border: rgba(20, 21, 26, 0.10);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* Gold accent */
  --color-accent: #c39a4c;
  --color-accent-strong: #ad8330;
  --gold-grad: linear-gradient(135deg, #e8c87d 0%, #cda14c 55%, #b07f2c 100%);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 980px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 21, 26, 0.06), 0 4px 14px rgba(20, 21, 26, 0.05);
  --shadow-md: 0 6px 20px rgba(20, 21, 26, 0.08), 0 18px 50px rgba(20, 21, 26, 0.08);
  --shadow-lg: 0 20px 60px rgba(20, 21, 26, 0.16);

  /* Layout */
  --maxw: 1180px;
  --header-h: 60px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p { margin: 0; }

button { font-family: inherit; }

/* Accessibility: visible focus */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  top: 8px;
  background: var(--color-text);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  z-index: 200;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}

.section { padding-block: clamp(3.5rem, 8vw, var(--space-xl)); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}
.section-head.left { text-align: left; margin-inline: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.section-sub {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--color-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-text);
  color: #fff;
}
.btn-primary:hover { background: #2a2c34; box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold-grad);
  color: #221a08;
  box-shadow: 0 6px 18px rgba(176, 127, 44, 0.28);
}
.btn-gold:hover { box-shadow: 0 10px 26px rgba(176, 127, 44, 0.38); }

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

.btn-ghost.on-dark { color: #fff; border-color: var(--color-border-light); }
.btn-ghost.on-dark:hover { border-color: #fff; }

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-accent-strong);
  font-weight: 500;
}
.link-arrow::after { content: "›"; font-size: 1.2em; transition: transform 0.2s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 246, 244, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; color: var(--color-text); }
.brand svg { height: 26px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.82;
  transition: opacity 0.18s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"] { color: var(--color-accent-strong); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: none; background: transparent;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.6px;
  margin: 4px auto;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(246, 246, 244, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.2rem 1.4rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 0.95rem 0.3rem; border-bottom: 1px solid var(--color-border); font-size: 1.05rem; opacity: 1; }
  .nav-cta { margin-top: 1rem; }
  .nav-cta .btn { width: 100%; }
}

/* The menu wraps links + cta on desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(205, 161, 76, 0.16), transparent 60%),
    radial-gradient(90% 80% at 0% 0%, rgba(20, 21, 26, 0.05), transparent 55%),
    var(--color-bg);
}
.hero-inner {
  padding-block: clamp(3.6rem, 9vw, 7rem);
  display: grid;
  gap: clamp(2.2rem, 5vw, 3.5rem);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 1.3rem;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  color: var(--color-muted);
  max-width: 30em;
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, #20222b, #15161b 70%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 70% 10%, rgba(205, 161, 76, 0.30), transparent 60%);
}
.hero-visual img {
  position: relative;
  width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16 / 11; max-height: 360px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.trust-strip ul {
  list-style: none; margin: 0; padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1rem, 5vw, 3.5rem);
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.92rem; color: var(--color-muted);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--color-accent-strong); }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #f4f3f0, #e9e8e4);
  overflow: hidden;
}
.product-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .media img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: rgba(21, 22, 27, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.product-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.2rem 1.3rem;
}
.product-card .cat {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-faint);
}
.product-card h3 {
  font-size: 1.06rem; font-weight: 600; margin-top: 0.4rem; line-height: 1.25;
}
.product-card .desc {
  margin-top: 0.5rem; font-size: 0.92rem; color: var(--color-muted);
  flex: 1;
}
.product-card .foot {
  margin-top: 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
}
.price { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; }
.price .cur { font-size: 0.8em; color: var(--color-muted); margin-right: 0.05em; }

/* ---------- Value cards ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(205, 161, 76, 0.14);
  color: var(--color-accent-strong);
  margin-bottom: 1.1rem;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.14rem; }
.value-card p { margin-top: 0.55rem; color: var(--color-muted); font-size: 0.96rem; }

/* ---------- Process ---------- */
.section-dark {
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(205, 161, 76, 0.16), transparent 55%),
    var(--color-dark);
  color: #fff;
}
.section-dark .section-sub { color: rgba(255, 255, 255, 0.7); }
.section-dark .eyebrow { color: var(--color-accent); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  counter-reset: step;
}
.process-step {
  position: relative;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
}
.process-step .num {
  font-size: 0.92rem; font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
.process-step h3 { margin-top: 0.7rem; font-size: 1.2rem; color: #fff; }
.process-step p { margin-top: 0.55rem; color: rgba(255, 255, 255, 0.66); font-size: 0.95rem; }

/* ---------- Trust / CTA band ---------- */
.cta-band {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cta-band p { max-width: 46em; margin: 1rem auto 0; color: var(--color-muted); font-size: 1.06rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Shop controls ---------- */
.shop-head { padding-block: clamp(2.4rem, 5vw, 3.4rem) 0; }
.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.search-field {
  position: relative;
  flex: 1 1 260px;
  max-width: 380px;
}
.search-field svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--color-faint);
}
.search-field input {
  width: 100%;
  padding: 0.72rem 1rem 0.72rem 2.4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  font-size: 0.96rem; color: var(--color-text);
}
.search-field input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(205,161,76,0.18); }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.9rem; color: var(--color-muted);
  cursor: pointer;
  transition: all 0.18s ease;
}
.chip:hover { border-color: var(--color-text); color: var(--color-text); }
.chip[aria-pressed="true"] {
  background: var(--color-text); color: #fff; border-color: var(--color-text);
}

.result-count { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1.2rem; }

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  max-width: 520px;
  margin: clamp(2rem, 6vw, 4rem) auto;
  padding: 2.5rem;
}
.empty-state .value-icon { margin-inline: auto; width: 56px; height: 56px; }
.empty-state h2 { font-size: 1.5rem; }
.empty-state p { margin-top: 0.8rem; color: var(--color-muted); }

/* ---------- Product detail ---------- */
.pdp { padding-block: clamp(2rem, 5vw, 3.4rem); }
.breadcrumb { font-size: 0.88rem; color: var(--color-muted); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb span { color: var(--color-faint); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.pdp-media {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #f4f3f0, #e7e6e2);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: grid; place-items: center;
}
.pdp-media img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .cat {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-accent-strong);
}
.pdp-info h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-top: 0.6rem; }
.pdp-price { margin-top: 1.1rem; font-size: 1.7rem; font-weight: 600; }
.pdp-condition {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 0.9rem;
  font-size: 0.9rem; color: var(--color-muted);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}
.pdp-desc { margin-top: 1.4rem; color: var(--color-muted); font-size: 1.04rem; }
.pdp-specs { margin-top: 1.6rem; list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.pdp-specs li {
  position: relative; padding-left: 1.6rem;
  font-size: 0.96rem; color: var(--color-text);
}
.pdp-specs li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-grad);
}
.pdp-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.pdp-note {
  margin-top: 1.6rem;
  font-size: 0.86rem; color: var(--color-faint);
  padding-top: 1.2rem; border-top: 1px solid var(--color-border);
}

@media (max-width: 820px) {
  .pdp-grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero (about/contact) ---------- */
.page-hero { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .container { max-width: 820px; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
.page-hero p { margin-top: 1.1rem; font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--color-muted); }

.prose { max-width: 720px; }
.prose p { margin-top: 1.1rem; color: var(--color-text); font-size: 1.06rem; line-height: 1.65; }
.prose p.lead { font-size: 1.2rem; color: var(--color-text); }
.prose h2 { font-size: 1.5rem; margin-top: 2.6rem; }

/* ---------- Contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block; font-size: 0.9rem; font-weight: 500;
  margin-bottom: 0.45rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 0.98rem; font-family: inherit; color: var(--color-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(205, 161, 76, 0.18);
}
.form-note { font-size: 0.85rem; color: var(--color-faint); margin-top: 0.4rem; }
.form-status {
  margin-top: 1rem; font-size: 0.95rem;
  padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  background: rgba(205, 161, 76, 0.12); color: var(--color-accent-strong);
  display: none;
}
.form-status.show { display: block; }

.contact-aside h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.contact-aside .info-block { margin-bottom: 1.6rem; }
.contact-aside p { color: var(--color-muted); font-size: 0.96rem; }
.contact-aside a { color: var(--color-accent-strong); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(2.6rem, 5vw, 4rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 2.4rem);
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-border-light);
}
.footer-brand svg { height: 26px; width: auto; color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 26em; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); margin-bottom: 0.9rem; font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.94rem; color: rgba(255, 255, 255, 0.7); transition: color 0.18s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  justify-content: space-between; align-items: center;
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .product-card:hover, .value-card:hover { transform: none; }
}
