@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* ---- Color tokens ---- */
  --ink: #191B1F;
  --ink-soft: #23262D;
  --steel: #33415C;
  --steel-light: #4C5C7A;
  --oxide: #C1440E;
  --oxide-dark: #9A360A;
  --forge: #E8A33D;
  --sand: #F3ECDD;
  --sand-dark: #E8DFC9;
  --iron: #6B7280;
  --white: #FFFFFF;
  --success: #3F8A5B;

  /* two top-level catalog accent colors, used on card media + category cards */
  --cat-paint: #2E7D8C;
  --cat-tools: #C1440E;

  /* ---- Type tokens ---- */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* ---- Layout tokens ---- */
  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-md: 0 8px 24px rgba(25, 27, 31, 0.12);
  --shadow-lg: 0 20px 48px rgba(25, 27, 31, 0.22);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

p {
  margin: 0 0 1em;
}

.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--forge);
  outline-offset: 2px;
}

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

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--dark {
  background: var(--ink);
  color: var(--sand);
}

.section--sand {
  background: var(--sand);
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--oxide);
  margin-bottom: 12px;
  display: inline-block;
}

.section--dark .eyebrow {
  color: var(--forge);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.muted {
  color: var(--iron);
}

.section--dark .muted {
  color: #B9BEC9;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--oxide);
  color: var(--white);
}

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

.btn--accent {
  background: var(--success);
  color: var(--white);
}

.btn--accent:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--iron);
}

.section--dark .btn--outline {
  color: var(--sand);
  box-shadow: inset 0 0 0 1.5px #4C5568;
}

.btn--outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

.btn--block {
  width: 100%;
}

.btn--small {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(154, 54, 10, 0.94);
  backdrop-filter: blur(8px);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
  padding: 18px 0;
}

.site-header--scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 901px) {
  .site-header .container {
    max-width: 1400px;
    padding: 0 40px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand__mark {
  width: 34px;
  height: 34px;
  color: var(--oxide);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.brand__name span {
  color: var(--forge);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  color: #D8DBE2;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s;
}

.primary-nav a:hover {
  color: var(--forge);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--white);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--oxide-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 22px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    font-size: 1.1rem;
  }

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

  .header-cta .btn span.btn-label-full {
    display: none;
  }
}

/* ---- Scroll gauge (signature element) — doubles as the cart checkout trigger ---- */
.scroll-gauge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 56px;
  height: 56px;
  display: block;
}

.scroll-gauge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scroll-gauge__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 5;
}

.scroll-gauge__fill {
  fill: none;
  stroke: var(--oxide);
  stroke-width: 5;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-gauge__hub {
  fill: var(--ink);
}

.scroll-gauge__icon {
  color: var(--forge);
}

@media (max-width: 700px) {
  .scroll-gauge {
    display: none;
  }
}

/* Cart-count badge shared visual language for both the desktop gauge and the
   mobile floating button below */
.scroll-gauge__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--oxide);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--ink);
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-gauge__count.is-visible {
  transform: scale(1);
}

@keyframes cartBump {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.18);
  }

  60% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

.scroll-gauge.is-bumped,
.cart-float.is-bumped {
  animation: cartBump 0.4s ease;
}

.cart-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--oxide-dark);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.cart-float svg {
  width: 28px;
  height: 28px;
}

.cart-float.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

@media (max-width: 700px) {
  .cart-float {
    display: flex;
  }
}

.cart-float__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--white);
  color: var(--oxide-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-top: 60px;
}

/* A very faint unifying grain sits above everything (photo + video) so the
   seam between them reads as one lit scene, not two pasted rectangles. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Background: a single weathered-paint photo that slides in whole,
   left → right, to fill the entire hero — no fragments, no seams ---- */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(16, 13, 12, 0.46) 0%, rgba(16, 13, 12, 0.26) 42%, rgba(16, 13, 12, 0.08) 62%, rgba(16, 13, 12, 0.2) 100%),
    url('../assets/weathered-paint-wall.jpg') center / cover no-repeat;
  background-size: cover, 130%;
  filter: saturate(1.4) contrast(1.25) brightness(0.95);
  transform: translateX(-104%);
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero--photo-in .hero__bg-photo {
  transform: translateX(0);
}

.hero--photo-in .hero__bg-photo {
  animation: heroPhotoDrift 26s ease-in-out 1.1s infinite alternate;
}

@keyframes heroPhotoDrift {
  from {
    background-position: 0 0, 46% 48%;
  }

  to {
    background-position: 0 0, 54% 52%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--photo-in .hero__bg-photo {
    animation: none;
  }
}

.hero h1 {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.65);
}

/* ---- Staggered hero copy: headline flows in right→left, then the lead paragraph ---- */
.hero__copy>* {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero__copy .hero__eyebrow {
  transform: translateY(14px);
  transition-delay: 0s;
}

.hero__copy h1 {
  transform: translateX(90px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.08s;
}

.hero__copy p.lead {
  transform: translateY(22px);
  transition-delay: 0.85s;
}

.hero__copy .hero__actions {
  transform: translateY(22px);
  transition-delay: 1.05s;
}

.hero__copy .hero__stats {
  transform: translateY(22px);
  transition-delay: 1.18s;
}

.hero--text-in .hero__copy>* {
  opacity: 1;
  transform: none;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  color: var(--forge);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 18px;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--forge);
}

.hero p.lead {
  font-size: 1.1rem;
  color: #D8DBE2;
  max-width: 480px;
  margin-bottom: 32px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--white);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: #AEB4C0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__stat-fill {
  width: 100%;
  max-width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.hero__stat-fill span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--forge);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__grid {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.hero__copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px clamp(24px, 4vw, 56px) 48px clamp(24px, 4vw, calc((100vw - 1180px) / 2 + 24px));
  box-sizing: border-box;
}

.hero__panel {
  position: relative;
  width: 100%;
  max-height: 75vh;
  aspect-ratio: 4 / 5;
  margin-top: clamp(20px, 3vh, 44px);
  overflow: hidden;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.35);
  clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%, 2.0% 92.3%, 4.0% 84.6%, 2.9% 76.9%, 4.4% 69.2%, 4.6% 61.5%, 0.9% 53.8%, 0.6% 46.2%, 5.9% 38.5%, 2.2% 30.8%, 2.0% 23.1%, 7.0% 15.4%, 3.6% 7.7%, 5.9% 0.0%);
  transform: translateY(-120%);
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero--panel-in .hero__panel {
  transform: translateY(0);
}

/* a soft warm-toned blur bleeding off the torn edge helps the two
   backgrounds read as one lit scene instead of a hard graphic seam */
.hero__panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 56px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(140, 58, 42, 0) 0%, rgba(140, 58, 42, 0.4) 45%, rgba(140, 58, 42, 0) 100%);
  filter: blur(9px);
  pointer-events: none;
}

.hero__video-frame {
  position: absolute;
  inset: 0;
  background: var(--ink-soft);
}

.hero__video-frame video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-frame .video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--forge);
  background: linear-gradient(160deg, var(--ink-soft), var(--steel));
}

.hero__video-frame.is-video-error .video-fallback {
  display: flex;
}

.hero__panel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  font-size: 0.85rem;
  color: #F1F2F4;
  background: linear-gradient(0deg, rgba(10, 8, 7, 0.72) 0%, rgba(10, 8, 7, 0) 100%);
}

.rec-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E13C30;
  display: inline-block;
  margin-right: 7px;
  box-shadow: 0 0 6px rgba(225, 60, 48, 0.85);
  animation: recBlink 1.1s steps(1, end) infinite;
}

@keyframes recBlink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.15;
  }
}

.hero__cat-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  gap: 14px;
}

.hero__cat-icon {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(20, 16, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-46vh) scale(0.7);
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero__cat-icon-glyph {
  display: flex;
  color: var(--forge);
}

.hero__cat-icon:nth-child(2) {
  transition-delay: 0.16s;
}

.hero__cat-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--forge);
}

.hero--icons-in .hero__cat-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .hero__cat-icons {
    position: static;
    transform: none;
    justify-content: center;
    padding: 8px 0 22px;
  }

  .hero__cat-icon {
    opacity: 1;
    transform: none;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hero {
    min-height: auto;
    margin-top: calc(-1 * var(--header-h, 72px));
    padding: calc(96px + var(--header-h, 72px)) 0 64px;
  }

  .hero__copy {
    height: auto;
    padding: 0 20px 32px;
  }

  .hero__panel {
    max-height: none;
    aspect-ratio: 16 / 11;
    margin: 0 20px 28px;
    width: auto;
    clip-path: inset(0 round var(--radius-md));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  }

  .hero__panel::before {
    display: none;
  }

  .hero__bg-photo {
    inset: 0 0 auto 0;
    height: var(--hero-bg-mobile-h, 640px);
    background-size: cover, cover;
  }

  .hero__stat-num {
    color: var(--forge);
  }
}

.trust-strip {
  background: var(--sand);
  padding: 22px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--oxide);
  flex-shrink: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

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

@media (max-width: 560px) {

  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.overview-figure {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.overview-figure .ruler {
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, var(--oxide) 0 2px, transparent 2px 22px);
  opacity: 0.4;
}

.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--oxide);
}

.stat-card__label {
  font-size: 0.82rem;
  color: var(--iron);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Compact feature points replacing the old three separate sections */
.feature-point {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-point__icon {
  width: 36px;
  height: 36px;
  color: var(--oxide);
  margin-bottom: 12px;
}

.feature-point h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-point p {
  font-size: 0.86rem;
  margin: 0;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  width: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--oxide);
}

.category-card__icon {
  width: 46px;
  height: 46px;
  color: var(--oxide);
}

.category-card--paint .category-card__icon {
  color: var(--cat-paint);
}

.category-card--tools .category-card__icon {
  color: var(--cat-tools);
}

.category-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.category-card__blurb {
  font-size: 0.9rem;
  color: var(--iron);
}

.category-card__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--oxide);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 480px) {
  .category-card {
    padding: 18px;
    gap: 8px;
  }

  .category-card__icon {
    width: 34px;
    height: 34px;
  }

  .category-card__name {
    font-size: 1.1rem;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row--sub {
  margin-bottom: 24px;
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
  transition: background 0.15s, color 0.15s;
}

.chip:hover {
  background: var(--sand-dark);
}

.chip--active {
  background: var(--ink);
  color: var(--white);
}

.chip--sub {
  padding: 7px 15px;
  font-size: 0.78rem;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--sand-dark);
}

.chip--sub.chip--active {
  background: var(--oxide);
  color: var(--white);
  box-shadow: none;
}

.search-sort {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.input,
.select {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
}

.input:focus,
.select:focus {
  border-color: var(--oxide);
}

.result-count {
  font-size: 0.85rem;
  color: var(--iron);
  margin-bottom: 20px;
}

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

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

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

/* Keep a 2-up product grid on small phones instead of collapsing to 1 column.
   Everything below is scoped to .product-grid so it can't bleed into the
   product modal or cart drawer, which reuse some of the same class names. */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-grid .product-card__body {
    padding: 10px;
    gap: 4px;
  }

  .product-grid .product-card__category {
    font-size: 0.62rem;
  }

  .product-grid .product-card__name {
    font-size: 0.82rem;
    min-height: 2.2em;
  }

  .product-grid .product-card__rating {
    font-size: 0.7rem;
    gap: 4px;
  }

  .product-grid .product-card__price-row {
    margin: 2px 0 8px;
    gap: 5px;
  }

  .product-grid .product-card__price {
    font-size: 0.9rem;
  }

  .product-grid .product-card__old-price {
    font-size: 0.72rem;
  }

  .product-grid .product-card__actions {
    gap: 6px;
  }

  .product-grid .product-card__actions .btn--block {
    padding: 8px 6px;
    font-size: 0.76rem;
    white-space: normal;
  }

  .product-grid .product-card__cart-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .product-grid .qty-stepper__btn {
    width: 26px;
    font-size: 0.9rem;
  }

  .product-grid .qty-stepper__input {
    width: 26px;
    font-size: 0.8rem;
  }

  .product-grid .product-card__cart-row .btn {
    flex: 1 1 100%;
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .product-grid .badge {
    font-size: 0.58rem;
    padding: 4px 7px;
    top: 8px;
    left: 8px;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.product-card__media {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--cat-color) 12%, white), color-mix(in srgb, var(--cat-color) 4%, white));
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed color-mix(in srgb, var(--cat-color) 40%, transparent);
  border-radius: var(--radius-sm);
}

.product-card__icon {
  width: 28%;
  color: var(--cat-color);
}

.product-card__photo-pending {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--cat-color) 70%, var(--iron));
  font-weight: 600;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.badge--new {
  background: var(--forge);
  color: var(--ink);
}

.badge--popular {
  background: var(--ink);
  color: var(--white);
}

.badge--sale {
  background: var(--oxide);
  color: var(--white);
}

.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card__category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--iron);
  margin: 0;
}

.product-card__name {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
}

.product-card__rating {
  font-size: 0.82rem;
  color: var(--iron);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--forge);
  letter-spacing: 1px;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 12px;
}

.product-card__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.product-card__old-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--iron);
  text-decoration: line-through;
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--iron);
  grid-column: 1/-1;
}

/* ---- Quantity stepper + Add to Cart row, sits alongside "View details" ---- */
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.product-card__cart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qty-stepper {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.qty-stepper__btn {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--steel);
  background: var(--sand);
  transition: background 0.15s;
}

.qty-stepper__btn:hover {
  background: var(--sand-dark);
}

.qty-stepper__input {
  width: 34px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--sand-dark);
  border-right: 1px solid var(--sand-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  -moz-appearance: textfield;
  padding: 0;
}

.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-card__cart-row .btn {
  flex: 1 1 96px;
  min-width: 96px;
  white-space: nowrap;
}

.btn--add-to-cart[disabled] {
  opacity: 0.75;
  cursor: default;
}

.reviews-testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .reviews-testimonials {
    grid-template-columns: minmax(0, 1fr);
  }
}

.reviews-testimonials__block-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--forge);
  margin-bottom: 14px;
  display: block;
}

.review-card-grid {
  display: grid;
  gap: 16px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.85rem;
}

.review-card__title {
  font-weight: 600;
  margin: 0 0 6px;
}

.review-card__text {
  font-size: 0.88rem;
  color: #C6CAD4;
  margin: 0 0 8px;
}

.review-card__author {
  font-size: 0.78rem;
  color: var(--forge);
  margin: 0;
}

.testimonial-carousel {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-width: 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  min-width: 0;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  background: var(--ink-soft);
  border-radius: var(--radius-md);
}

.testimonial-slide p.quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  max-width: 720px;
}

.testimonial-slide .stars {
  display: block;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--forge);
  margin-top: 18px;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-controls button:hover {
  background: var(--oxide);
}

.rec-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--oxide), var(--oxide-dark));
  border-radius: var(--radius-md);
  padding: 56px;
  color: var(--white);
}

@media (max-width: 860px) {
  .rec-cta {
    grid-template-columns: 1fr;
    padding: 36px;
  }
}

.rec-cta h2 {
  color: var(--white);
}

.rec-gauge-demo {
  display: flex;
  justify-content: center;
}

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
  padding: 20px 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--oxide);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 14px;
  color: var(--iron);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--oxide);
  flex-shrink: 0;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-dark);
  font-family: var(--font-body);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  aspect-ratio: 16/9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--oxide);
  font-weight: 600;
}

.map-embed__link:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--ink);
  color: #B9BEC9;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

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

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

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-grid li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: var(--forge);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 150;
  background: var(--success);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: floatPulse 2.4s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(63, 138, 91, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(63, 138, 91, 0);
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 16, 19, 0.72);
  padding: 24px 16px;
}

.modal--open {
  display: flex;
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 920px;
  width: 100%;
  max-height: calc(100vh - 48px);
  max-height: calc(calc(var(--vh, 1vh) * 100) - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal__close {
  position: sticky;
  top: 0;
  left: 100%;
  margin-bottom: -36px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.modal__close:hover {
  background: var(--sand-dark);
}

.modal__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

@media (max-width: 760px) {
  .modal__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.modal__media {
  border-radius: var(--radius-md);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, color-mix(in srgb, var(--cat-color) 14%, white), color-mix(in srgb, var(--cat-color) 4%, white));
}

.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

@media (max-width: 760px) {
  .modal__media {
    aspect-ratio: 21/9;
  }
}

.modal__icon {
  width: 30%;
  color: var(--cat-color);
}

.modal__title {
  font-size: 1.3rem;
  margin: 4px 0 8px;
}

.modal__price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 8px 0;
}

.modal__description {
  font-size: 0.92rem;
}

.modal__subhead {
  font-size: 0.92rem;
  margin-top: 18px;
}

@media (max-width: 480px) {
  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal__content {
    max-height: 92vh;
    max-height: calc(calc(var(--vh, 1vh) * 100) * 0.92);
    max-height: 92dvh;
    width: 100%;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 24px 20px;
  }

  .modal__title {
    font-size: 1.15rem;
  }

  .modal__price {
    font-size: 1.05rem;
  }
}

.modal__content--cart {
  max-width: 420px;
  width: 100%;
  padding: 32px 24px;
}

#cartModal {
  align-items: center;
  padding: 24px 16px;
}

@media (max-width: 480px) {
  #cartModal {
    align-items: center;
    padding: 20px 14px;
  }

  #cartModal .modal__content--cart {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-md);
    padding: 26px 18px;
  }
}

.cart-modal__empty {
  text-align: center;
  padding: 32px 8px;
  color: var(--iron);
}

.cart-modal__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 18px;
  max-height: 44vh;
  overflow-y: auto;
}

.cart-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sand-dark);
}

.cart-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-line__info {
  flex: 1;
  min-width: 0;
}

.cart-line__name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 2px;
}

.cart-line__price {
  font-size: 0.78rem;
  color: var(--iron);
  margin: 0;
}

.cart-line__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.qty-stepper--cart .qty-stepper__value {
  width: 26px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 1px solid var(--sand-dark);
  border-right: 1px solid var(--sand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cart-line__subtotal {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 62px;
  text-align: right;
}

.cart-line__remove {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--iron);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.cart-line__remove:hover {
  background: var(--sand);
  color: var(--danger, #C0392B);
}

.cart-modal__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 4px;
  margin-bottom: 18px;
}

.cart-modal__total span:last-child {
  font-family: var(--font-mono);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.spec-table th {
  color: var(--iron);
  font-weight: 500;
  width: 45%;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.review {
  border-top: 1px solid var(--sand-dark);
  padding-top: 14px;
  margin-top: 14px;
}

.review__meta {
  font-size: 0.82rem;
  color: var(--iron);
  margin-bottom: 4px;
}

.review__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.review__text {
  font-size: 0.9rem;
  color: var(--steel);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

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

.related-card {
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s;
}

.related-card:hover {
  border-color: var(--oxide);
}

.related-card__icon {
  width: 26px;
  height: 26px;
  color: var(--oxide);
}

.related-card__name {
  font-size: 0.82rem;
  line-height: 1.3;
}

.related-card__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- Wizard ---- */
.wizard__progress {
  height: 5px;
  background: var(--sand);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.wizard__progress-bar {
  height: 100%;
  background: var(--oxide);
  transition: width 0.3s ease;
}

.wizard__step-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--iron);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wizard__question {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.wizard__options {
  display: grid;
  gap: 12px;
}

.wizard__option {
  text-align: left;
  padding: 16px 20px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}

.wizard__option:hover {
  border-color: var(--oxide);
  background: var(--sand);
}

.wizard__results {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.result-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-md);
  padding: 18px;
}

@media (max-width: 560px) {
  .result-card {
    grid-template-columns: 1fr;
  }
}

.result-card__gauge {
  position: relative;
  width: 90px;
  height: 90px;
}

.gauge {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge__track {
  fill: none;
  stroke: var(--sand);
  stroke-width: 8;
}

.gauge__fill {
  fill: none;
  stroke: var(--oxide);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.6s ease;
}

.gauge__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
}

.reason-list {
  margin: 10px 0;
}

.reason-list li {
  font-size: 0.85rem;
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  color: var(--steel);
}

.reason-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--oxide);
}

.result-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
