:root {
  --ink: #132033;
  --muted: #667386;
  --deep: #0b3551;
  --blue: #1c66ad;
  --sky: #d9f1fb;
  --green: #12875f;
  --red: #d7282f;
  --yellow: #f2c94c;
  --line: #dfe7ef;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --shadow: 0 18px 50px rgba(18, 40, 64, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius);
  transition: top 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 231, 239, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 46, 74, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #24344a;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--deep);
  background: var(--sky);
}

.header-cta {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: #fff;
  font-weight: 800;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 135, 95, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #0f704f;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.service-alert {
  color: #573900;
  background: #fff4d6;
  border-bottom: 1px solid #ecd18a;
}

.service-alert-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding-block: 10px;
  text-align: center;
}

.service-alert-icon {
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  background: #b77900;
  border-radius: 50%;
}

.service-alert p {
  margin: 0;
  font-size: 0.94rem;
}

.page-hero {
  display: grid;
  min-height: 240px;
  align-items: center;
  padding: 48px 0;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero-store {
  background-image:
    radial-gradient(circle at 82% 25%, rgba(28, 102, 173, 0.55), transparent 30%),
    linear-gradient(125deg, #071e30 0%, #0b3551 62%, #164f7d 100%);
}

.page-hero-contact {
  background-image:
    linear-gradient(90deg, rgba(5, 27, 43, 0.96), rgba(5, 27, 43, 0.7)),
    url("assets/img/servicio-banner.png");
}

.page-hero .container {
  width: var(--container);
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}

.contact-overview {
  padding-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-width: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(19, 32, 51, 0.06);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 27, 43, 0.94) 0%, rgba(5, 27, 43, 0.78) 42%, rgba(5, 27, 43, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 27, 43, 0.18), rgba(5, 27, 43, 0.72));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 46px;
  min-height: 78svh;
  padding: 108px 0 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(215, 40, 47, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #bd2027;
  transform: translateY(-2px);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--deep);
  background: var(--sky);
}

.btn-full {
  width: 100%;
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-panel strong {
  display: block;
  font-size: 1.55rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section {
  padding: 86px 0;
}

.section-light {
  background: #fff;
}

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

.section-products {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.split,
.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.service-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--deep);
  background: var(--sky);
  border: 1px solid #c5e8f6;
  border-radius: var(--radius);
  font-weight: 800;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.power-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.highlight {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(19, 32, 51, 0.07);
}

.highlight img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.highlight div {
  padding: 22px;
}

.highlight p {
  margin-bottom: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cards-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.item-card,
.motor-card,
.product-card,
.service-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(19, 32, 51, 0.06);
}

.item-card {
  display: grid;
  min-height: 100%;
  padding: 18px;
}

.item-card img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  margin-bottom: 14px;
}

.item-card p,
.motor-card p,
.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.motor-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.motor-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.motor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(19, 32, 51, 0.1);
}

.motor-visual {
  display: grid;
  place-items: center;
  height: 235px;
  background: linear-gradient(180deg, #f7fbff, #eef6fb);
  border-radius: var(--radius);
}

.motor-visual img {
  max-height: 210px;
  object-fit: contain;
}

.brand-logo {
  width: auto;
  max-width: 190px;
  height: 46px;
  object-fit: contain;
}

.shop-tools {
  display: grid;
  grid-template-columns: minmax(0, 620px) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(19, 32, 51, 0.06);
}

.product-search > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-search-field {
  position: relative;
  display: block;
}

.product-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 82px 11px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9d5e2;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.product-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(28, 102, 173, 0.14);
}

.product-search-field button {
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 5px 7px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-results {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--deep);
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  min-height: 210px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(19, 32, 51, 0.1);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: contain;
  padding: 16px;
  background: #f8fbfd;
}

.product-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

.product-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 900;
}

.product-card .price-consult {
  color: var(--blue);
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 2.4em;
}

.product-empty {
  margin: 26px 0 0;
  padding: 26px;
  color: var(--muted);
  text-align: center;
  background: #fff;
  border: 1px dashed #bdcad8;
  border-radius: var(--radius);
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.product-pagination button {
  min-height: 42px;
  padding: 9px 16px;
  color: #fff;
  font-weight: 900;
  background: var(--deep);
  border: 1px solid var(--deep);
  border-radius: var(--radius);
  cursor: pointer;
}

.product-pagination button:disabled {
  color: #8592a2;
  background: #e8edf2;
  border-color: #e0e6ec;
  cursor: not-allowed;
}

.product-pagination span {
  min-width: 105px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.text-link {
  margin-top: 14px;
  padding: 0;
  color: var(--blue);
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.service-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 53, 81, 0.96), rgba(14, 83, 97, 0.94)),
    url("assets/img/servicio-banner.png") center / cover;
}

.service-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.service-copy .eyebrow {
  color: var(--yellow);
}

.service-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.service-copy img {
  width: min(520px, 100%);
  margin-top: 28px;
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(11, 53, 81, 0.8);
}

.service-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
}

.form-row {
  display: grid;
  gap: 7px;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: #34465d;
  font-weight: 900;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f9fbfd;
  border: 1px solid #ced9e5;
  border-radius: var(--radius);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(28, 102, 173, 0.14);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #071e30;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
}

.site-footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: table;
  margin: 8px 0;
  color: #fff;
}

.footer-whatsapp {
  font-size: 1.12rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(1.2%);
  }
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero,
  .hero-grid {
    min-height: 72svh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 88px 0 36px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split,
  .power-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .motor-showcase {
    grid-template-columns: 1fr;
  }

  .motor-card {
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
  }

  .motor-card .btn {
    justify-self: start;
  }

  .motor-visual {
    grid-row: span 3;
    height: 220px;
  }

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

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

@media (max-width: 720px) {
  .page-hero {
    min-height: 210px;
    padding: 40px 0;
  }

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

  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .service-alert-inner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 9px;
    padding-block: 11px;
    text-align: left;
  }

  .service-alert-icon {
    margin-top: 1px;
  }

  .service-alert p {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    gap: 18px;
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 27, 43, 0.88) 0%, rgba(5, 27, 43, 0.76) 55%, rgba(5, 27, 43, 0.82) 100%);
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.94rem;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-panel div {
    min-height: 86px;
    padding: 10px;
  }

  .hero-panel strong {
    font-size: 1.22rem;
    overflow-wrap: anywhere;
  }

  .hero-panel span {
    font-size: 0.75rem;
    line-height: 1.28;
  }

  .section {
    padding: 64px 0;
  }

  .shop-tools {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .product-results {
    margin: 0;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
    scrollbar-width: thin;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .cards-grid,
  .cards-grid.compact {
    grid-template-columns: 1fr;
  }

  .motor-card {
    grid-template-columns: 1fr;
  }

  .motor-visual {
    grid-row: auto;
    height: 220px;
  }

  .product-card {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 158px;
  }

  .product-card img {
    height: 158px;
    min-height: 158px;
    padding: 10px;
  }

  .product-card div {
    padding: 14px;
  }

  .product-card h3 {
    min-height: 0;
    font-size: 1rem;
  }

  .text-link {
    margin-top: 10px;
  }

  .product-pagination {
    gap: 9px;
  }

  .product-pagination button {
    min-height: 40px;
    padding-inline: 12px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
