/* Orizaba Tires and Auto — black / red surface */
:root {
  --bg-deep: #000000;
  --bg-panel: #0a0a0a;
  --bg-elevated: #121212;
  --ink: #f4f4f5;
  --ink-muted: #9ca3af;
  --accent: #e11d48;
  --accent-dim: #9f1239;
  --road: #171717;
  --tread-safe: #22c55e;
  --tread-warn: #facc15;
  --tread-critical: #ef4444;
  --ring: rgba(225, 29, 72, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Sora", var(--font);
  --radius: 12px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.65);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.88rem, 2.2vw, 1.08rem);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dim));
  display: grid;
  place-items: center;
  color: #0a0a0a;
  box-shadow: 0 0 0 2px var(--ring);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.nav-main a {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
}

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

.nav-main a[aria-current="page"] {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
}

.header-cta:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-panel);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

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

.footer-grid li {
  margin-bottom: 0.45rem;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(225, 29, 72, 0.16), transparent),
    linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 52rem;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 36ch;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* Cards & sections */
section {
  padding: 3rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--ink-muted);
  margin: 0 0 2rem;
  max-width: 60ch;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-elevated);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.stripe-demo-panel {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid rgba(225, 29, 72, 0.28);
  box-shadow: var(--shadow);
}

.stripe-demo-panel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stripe-demo-panel .stripe-demo-note {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
  max-width: 70ch;
}

.stripe-demo-breakdown {
  margin: 0 0 1rem 1rem;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.stripe-demo-breakdown li {
  margin-bottom: 0.35rem;
}

.stripe-demo-breakdown strong {
  color: var(--ink);
  font-weight: 600;
}

[data-stripe-status] {
  min-height: 1.5rem;
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
}

[data-stripe-status][data-kind="ok"] {
  color: var(--tread-safe);
}

[data-stripe-status][data-kind="warn"] {
  color: var(--tread-warn);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-deep));
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 55ch;
}

.prose {
  max-width: 65ch;
}

.prose h2 {
  font-family: var(--font-display);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.prose p,
.prose ul {
  color: var(--ink-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.locations-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-panel);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.location-card .icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-elevated);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.location-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.location-card address {
  font-style: normal;
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(225, 29, 72, 0.14);
  color: var(--accent);
}

.icon-inline {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

[data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.brand [data-lucide],
.card-icon [data-lucide],
.icon-box [data-lucide] {
  width: 1.35rem;
  height: 1.35rem;
}

.brand-mark [data-lucide] {
  width: 22px;
  height: 22px;
}

.nav-main [data-lucide] {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}

/* Nearest store (geolocation) */
.nearest-store-block {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nearest-store-block h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nearest-store-block .privacy-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
  max-width: 62ch;
}

.nearest-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

#nearest-store-status {
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex: 1 1 200px;
}

.nearest-result-card {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid rgba(225, 29, 72, 0.35);
}

.nearest-result-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.nearest-result-card p {
  margin: 0 0 0.65rem;
  color: var(--ink-muted);
}

.nearest-result-card p:last-child {
  margin-bottom: 0;
}

.nearest-result-card strong {
  color: var(--ink);
}

.nearest-distance {
  font-size: 1.05rem;
}

.nearest-footnote {
  font-size: 0.8rem !important;
  opacity: 0.9;
}

/* Wheels showcase (Meshy GLB + scroll panels) */
.wrap-wide {
  width: min(1240px, 94vw);
  margin-inline: auto;
}

.wheels-showcase {
  margin-top: 0;
}

.wheel-stage {
  position: relative;
  min-height: min(92vh, 920px);
  overflow: clip;
  background:
    radial-gradient(ellipse 100% 70% at 75% 15%, rgba(225, 29, 72, 0.12), transparent 52%),
    linear-gradient(180deg, #070a10 0%, #050608 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.wheel-stage__inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  min-height: min(88vh, 880px);
}

@media (min-width: 960px) {
  .wheel-stage__inner {
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: clamp(0.5rem, 2vw, 2rem);
  }

  .wheel-stage--flip .wheel-stage__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  }

  .wheel-stage:not(.wheel-stage--flip) .wheel-stage__panel {
    grid-column: 1;
    grid-row: 1;
    margin-right: clamp(-5rem, -8vw, -2rem);
    justify-self: start;
  }

  .wheel-stage:not(.wheel-stage--flip) .wheel-stage__visual {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .wheel-stage--flip .wheel-stage__visual {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .wheel-stage--flip .wheel-stage__panel {
    grid-column: 2;
    grid-row: 1;
    margin-left: clamp(-5rem, -8vw, -2rem);
    justify-self: end;
  }
}

.wheel-stage__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(720px, 100%);
  justify-self: center;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.55));
}

.wheel-stage__visual model-viewer {
  display: block;
  width: 100%;
  height: min(68vh, 620px);
  max-height: 620px;
  border-radius: 12px;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.08), transparent 55%), #0a0c12;
  transform: translateY(var(--wheel-parallax-y, 0px));
  transition: transform 0.2s ease-out;
}

.wheel-stage__visual model-viewer::part(default-progress-bar) {
  background-color: rgba(225, 29, 72, 0.45);
}

.wheel-stage__panel {
  position: relative;
  z-index: 2;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(69, 10, 10, 0.97), rgba(127, 29, 29, 0.9));
  border: 1px solid rgba(252, 165, 165, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  max-width: 440px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.wheel-stage.is-inview .wheel-stage__panel {
  opacity: 1;
  transform: translateY(0);
}

.wheel-stage__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 202, 202, 0.95);
  margin: 0 0 0.5rem;
}

.wheel-stage__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  margin: 0 0 0.65rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wheel-stage__panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(254, 242, 242, 0.96);
}

.wheel-stage__hint {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(254, 202, 202, 0.88);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wheel-cta-band {
  background: linear-gradient(180deg, #000000 0%, #0f0505 45%, #050505 100%);
  border-top: 1px solid rgba(225, 29, 72, 0.25);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}

.wheel-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--ink);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.wheel-cta-band > .wrap-wide > p {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.wheel-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.wheel-cta-actions .btn-primary {
  min-width: 200px;
  justify-content: center;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
}

@media (max-width: 959px) {
  .wheel-stage__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .wheel-stage__visual {
    order: 1;
  }

  .wheel-stage__panel {
    order: 2;
    max-width: none;
    margin: 0 !important;
  }

  .wheel-stage--flip .wheel-stage__visual {
    order: 1;
  }
}

/* —— Tires page: WebGL hero + cinematic strips —— */
.tires-page {
  overflow-x: clip;
}

.tire-hero {
  position: relative;
  height: 100vh;
  min-height: 32rem;
  max-height: 100dvh;
  background: #020203;
}

.tire-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tire-motion-reduce .tire-hero__canvas {
  display: none;
}

.tire-hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
}

.tire-motion-reduce .tire-hero {
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(225, 29, 72, 0.2), #020203);
}

.tire-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2.5rem, 8vh, 5rem);
  max-width: min(1100px, 94vw);
  margin: 0 auto;
}

.tire-hero__eyebrow {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(254, 202, 202, 0.95);
  margin: 0 0 0.75rem;
}

.tire-hero__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.75rem, 16vw, 11.5rem);
  line-height: 0.86;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 40px rgba(225, 29, 72, 0.45),
    0 4px 0 rgba(0, 0, 0, 0.85);
}

.tire-hero__word {
  display: inline-block;
  margin-right: 0.12em;
}

.tire-hero__deck {
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  max-width: 38ch;
  color: rgba(243, 244, 246, 0.94);
  margin: 0 0 1rem;
}

.tire-hero__deck em {
  color: #fda4af;
  font-style: italic;
  font-weight: 600;
}

.tire-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(252, 165, 165, 0.9);
  margin: 0;
}

.tire-main {
  position: relative;
  z-index: 3;
  background: #000;
}

.tire-strip {
  position: relative;
  padding: clamp(3.5rem, 10vw, 6.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tire-strip--dark {
  background: linear-gradient(180deg, #050508 0%, #000 100%);
}

.tire-strip--red {
  background: linear-gradient(135deg, #140205 0%, #1f0508 40%, #0a0002 100%);
  box-shadow: inset 0 0 120px rgba(225, 29, 72, 0.08);
}

.tire-strip__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 880px) {
  .tire-strip__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) minmax(0, 0.55fr);
  }
}

.tire-strip__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 10vw, 7rem);
  line-height: 0.92;
  margin: 0;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.9);
}

.tire-strip__sub {
  display: block;
  font-family: var(--font);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.35rem;
}

.tire-strip__body p {
  font-family: var(--font);
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  line-height: 1.65;
  color: rgba(209, 213, 219, 0.95);
  margin: 0;
  max-width: 52ch;
}

.tire-strip__aside {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(254, 205, 211, 0.95);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(225, 29, 72, 0.45);
  background: rgba(225, 29, 72, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 16rem;
}

.tire-fin {
  padding: clamp(4rem, 12vw, 7rem) 0;
  background: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(225, 29, 72, 0.12), transparent 55%), #020203;
  border-top: 1px solid rgba(225, 29, 72, 0.25);
}

.tire-fin__inner {
  text-align: center;
}

.tire-fin__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.tire-fin__copy {
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 48ch;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}

.tire-fin__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
