:root {
  --red: #d7192d;
  --red-dark: #820f1f;
  --blue: #2457ff;
  --ink: #050507;
  --paper: #f6f8fb;
  --muted: #aeb8c7;
  --line: rgba(255,255,255,.16);
  --glass: rgba(12,14,20,.66);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, video, iframe { max-width: 100%; }

.site-nav {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1480px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px 14px 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 80px rgba(0,0,0,.36);
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 12px 14px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.nav-links a:hover { color: #fff; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #07080b;
  font-size: 1.4rem;
}

.quote-btn,
.premium-btn,
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.quote-btn,
.premium-btn.light {
  background: linear-gradient(135deg, #fff, #bac5d3);
  color: #050507;
}

.premium-btn.red {
  background: linear-gradient(135deg, #ed2339, #8d1124);
  color: #fff;
  box-shadow: 0 14px 42px rgba(215,25,45,.34);
}

.premium-btn.ghost {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.quote-btn:hover,
.premium-btn:hover,
.product-cta:hover {
  transform: translateY(-2px);
}

.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 5vw, 104px) 90px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .9s ease, transform 1.4s ease;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.82) 38%, rgba(0,0,0,.42) 100%),
    var(--hero-image) center/cover;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--ink));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,255,255,.12), transparent 25%),
    radial-gradient(circle at 16% 82%, rgba(36,87,255,.18), transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.eyebrow,
.section-head span {
  color: #dce8ff;
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 30px 0 18px;
  max-width: 1160px;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 1000;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 880px;
  color: #dce3ee;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 5vw, 96px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-controls button,
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.hero-dots button.is-active { background: #fff; }

.quick-dock {
  position: fixed;
  z-index: 45;
  right: 28px;
  top: 32vh;
  display: grid;
  gap: 22px;
  padding: 24px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.quick-dock a {
  color: #050507;
  font-size: 1.45rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 34px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #18b85e;
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 0 0 14px rgba(24,184,94,.18), 0 24px 60px rgba(0,0,0,.35);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1b1e25;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 120px;
  padding: 28px;
  background: #090b10;
}

.trust-strip strong {
  display: block;
  font-size: 1.25rem;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.product-showcase,
.catalog-zone,
.experience-grid,
.contact-section {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 5vw, 96px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-head.compact { max-width: 760px; }

.section-head span { color: var(--red); }
.section-head h2,
.contact-panel h2 {
  margin: 14px 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 1000;
  line-height: .96;
}

.section-head p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 420px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 18px;
}

.product-rail::-webkit-scrollbar { display: none; }

.catalog-card {
  scroll-snap-align: start;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #151820, #090a0e);
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

.catalog-card.is-sale {
  border-color: rgba(215,25,45,.58);
  box-shadow: 0 28px 90px rgba(215,25,45,.2);
}

.product-media {
  position: relative;
  height: 250px;
  background: center/cover;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.76));
}

.product-media span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,25,45,.9);
  font-weight: 900;
}

.catalog-card.is-sale .product-media span {
  background: linear-gradient(135deg, #ff3348, #8d1124);
  text-transform: uppercase;
}

.product-body {
  padding: 26px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9ea8b8;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-card h3 {
  min-height: 68px;
  margin: 20px 0 12px;
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1.05;
}

.catalog-card p {
  min-height: 78px;
  color: #c5ceda;
  line-height: 1.65;
}

.price-panel,
.detail-price-panel {
  position: relative;
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(255,255,255,.04);
}

.catalog-card.is-sale .price-panel,
.detail-price-panel.is-sale {
  border-color: rgba(255,60,80,.42);
  background:
    linear-gradient(135deg, rgba(215,25,45,.24), rgba(255,255,255,.04)),
    rgba(255,255,255,.045);
}

.price-panel strong,
.detail-price-panel strong {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
}

.price-panel small,
.detail-price-panel small {
  color: #ffd8dd;
  font-weight: 900;
}

.price-before {
  color: #9ba6b6;
  font-size: .94rem;
  font-weight: 850;
  text-decoration: line-through;
}

.sale-ribbon {
  justify-self: start;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3348, #8d1124);
  color: #fff;
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.compat-line {
  min-height: 0 !important;
  margin: -8px 0 18px;
  color: #98a2b3 !important;
  font-size: .92rem;
}

.catalog-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.catalog-card dl div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.catalog-card dt {
  color: #8792a3;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card dd {
  margin: 6px 0 0;
  font-weight: 950;
}

.old-price {
  display: block;
  color: #98a2b3;
  text-decoration: line-through;
  font-size: .82rem;
  margin-bottom: 4px;
}

.sale-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-style: normal;
  font-size: .72rem;
  text-transform: uppercase;
}

.product-cta {
  width: 100%;
  background: #fff;
  color: #08090c;
}

.catalog-zone {
  background: #f4f6fa;
  color: #101218;
}

.catalog-tools {
  display: grid;
  gap: 20px;
}

.catalog-tools label {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  padding: 18px 22px;
  border: 1px solid #dfe4ee;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(19, 29, 45, .08);
}

.catalog-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

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

.chip-row button {
  padding: 10px 16px;
  border: 1px solid #d8deea;
  border-radius: 999px;
  background: #fff;
  color: #111318;
  font-weight: 850;
}

.catalog-full-link {
  width: fit-content;
  margin-top: 6px;
}

.brand-marquee {
  overflow: hidden;
  margin-top: 46px;
  border-block: 1px solid #dfe4ee;
  white-space: nowrap;
}

.brand-marquee div {
  display: inline-flex;
  gap: 14px;
  padding: 22px 0;
  animation: marquee 28s linear infinite;
}

.brand-marquee span {
  padding: 14px 20px;
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.experience-grid {
  background:
    radial-gradient(circle at 10% 20%, rgba(36,87,255,.16), transparent 26%),
    #08090d;
}

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

.experience-cards article,
.contact-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}

.experience-cards article {
  min-height: 260px;
  padding: 30px;
}

.experience-cards i {
  color: #fff;
  font-size: 2rem;
}

.experience-cards h3 {
  margin: 24px 0 12px;
  font-size: 1.45rem;
}

.experience-cards p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  background: #050507;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 68px);
}

.contact-panel .eyebrow { color: var(--red); }

.map-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.map-copy {
  padding: clamp(28px, 4vw, 46px);
}

.map-copy span {
  color: var(--red);
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.map-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.map-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.map-copy .premium-btn {
  margin-top: 18px;
}

.map-frame {
  min-height: 420px;
  background: #101218;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.22) contrast(1.04) saturate(.86);
}

.contact-actions {
  display: grid;
  justify-items: end;
  gap: 24px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 96px);
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
}

.site-footer img { width: 170px; }
.site-footer a { color: #fff; font-weight: 850; }

.seo-local {
  padding: 34px clamp(20px, 5vw, 96px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050507;
  color: #aeb8c7;
}

.seo-local h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.seo-local p {
  max-width: 1100px;
  margin: 0;
  line-height: 1.7;
}

.catalog-page,
.product-page,
.thanks-page {
  min-height: 100vh;
  padding: 150px clamp(20px, 5vw, 96px) 90px;
  background:
    radial-gradient(circle at 80% 10%, rgba(36,87,255,.18), transparent 24%),
    radial-gradient(circle at 15% 12%, rgba(215,25,45,.18), transparent 22%),
    #050507;
}

.catalog-page-head h1,
.product-info h1,
.thanks-page h1 {
  max-width: 980px;
  margin: 18px 0 24px;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 1000;
  line-height: .9;
}

.catalog-search-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(160px, 240px) minmax(160px, 240px) auto;
  gap: 12px;
  margin-top: 34px;
}

.catalog-search-form input,
.catalog-search-form select,
.quote-form input,
.quote-form textarea {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 16px;
  outline: 0;
}

.catalog-search-form option {
  color: #111318;
}

.catalog-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.empty-state {
  color: var(--muted);
  font-size: 1.25rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.product-gallery,
.product-info {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  padding: clamp(18px, 3vw, 30px);
}

.product-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.product-info > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.spec-grid div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
}

.spec-grid span {
  display: block;
  color: #8792a3;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 8px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.quote-form {
  display: none;
  gap: 12px;
  margin-top: 18px;
}

.quote-form.is-open {
  display: grid;
}

.quote-form textarea {
  min-height: 120px;
  padding-top: 14px;
}

.thanks-page {
  display: grid;
  place-items: center;
  text-align: center;
}

.thanks-page section {
  max-width: 800px;
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto auto;
    border-radius: 24px;
    align-items: center;
  }

  .brand-lockup img { width: 168px; }
  .menu-toggle { display: grid; place-items: center; justify-self: end; }
  .quote-btn { display: none; }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    gap: 4px;
  }

  .nav-links.is-open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 14px 4px;
  }

  .hero-slide { padding-top: 130px; }
  .hero-content h1 { max-width: 760px; }
  .quick-dock { display: none; }
  .trust-strip,
  .experience-cards,
  .contact-panel,
  .map-panel { grid-template-columns: 1fr; }
  .contact-actions { justify-items: start; }
  .map-frame,
  .map-frame iframe { min-height: 340px; }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-nav {
    top: 12px;
    width: calc(100vw - 24px);
    padding: 10px 14px;
    gap: 10px;
    border-radius: 20px;
  }

  .brand-lockup img {
    width: min(148px, 44vw);
    max-height: 44px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .quote-btn,
  .premium-btn,
  .product-cta {
    min-height: 52px;
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .hero-carousel {
    min-height: 100svh;
  }

  .hero-slide {
    min-height: 100svh;
    padding: 120px 20px 92px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.74) 38%, rgba(0,0,0,.94) 100%),
      var(--hero-image) center/cover;
  }

  .eyebrow,
  .section-head span {
    font-size: .74rem;
    letter-spacing: .18em;
  }

  .hero-content h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.85rem, 15vw, 4.9rem);
    line-height: .9;
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.eyebrow),
  .section-head p,
  .contact-panel p,
  .product-info > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .hero-controls {
    left: 20px;
    right: auto;
    bottom: 24px;
  }

  .hero-controls button {
    width: 42px;
    height: 42px;
  }

  .hero-dots button {
    width: 28px;
  }

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

  .trust-strip div {
    min-height: 104px;
    padding: 20px;
  }

  .trust-strip strong {
    font-size: 1.02rem;
  }

  .product-showcase,
  .catalog-zone,
  .experience-grid,
  .contact-section {
    padding: 64px 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .carousel-shell { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }
  .product-rail {
    grid-auto-columns: minmax(0, calc(100vw - 36px));
    gap: 14px;
    padding-bottom: 8px;
  }

  .catalog-card {
    min-height: auto;
    border-radius: 14px;
  }

  .product-media {
    height: 210px;
  }

  .product-body {
    padding: 20px;
  }

  .product-meta {
    display: grid;
    gap: 6px;
    font-size: .72rem;
  }

  .catalog-card h3 {
    min-height: auto;
    margin: 14px 0 10px;
    font-size: 1.45rem;
  }

  .catalog-card p {
    min-height: auto;
    font-size: .96rem;
  }

  .price-panel,
  .detail-price-panel {
    padding: 15px;
    border-radius: 14px;
  }

  .price-panel strong,
  .detail-price-panel strong {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
    overflow-wrap: anywhere;
  }

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

  .catalog-tools label {
    border-radius: 18px;
    padding: 16px;
  }

  .chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .chip-row::-webkit-scrollbar {
    display: none;
  }

  .chip-row button {
    flex: 0 0 auto;
  }

  .experience-cards {
    gap: 12px;
  }

  .experience-cards article {
    min-height: 0;
    padding: 22px;
  }

  .contact-panel {
    padding: 24px;
    border-radius: 16px;
  }

  .contact-actions,
  .contact-actions .premium-btn {
    width: 100%;
  }

  .social-row {
    flex-wrap: wrap;
  }

  .map-panel {
    border-radius: 16px;
  }

  .map-copy {
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px;
  }

  .seo-local {
    padding: 26px 18px;
  }

  .site-footer img {
    width: 150px;
  }

  .catalog-page,
  .product-page,
  .thanks-page {
    padding: 116px 18px 72px;
  }

  .catalog-page-head h1,
  .product-info h1,
  .thanks-page h1 {
    font-size: clamp(2.4rem, 13vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .catalog-search-form,
  .product-detail,
  .spec-grid { grid-template-columns: 1fr; }

  .catalog-search-form {
    gap: 10px;
  }

  .catalog-search-form input,
  .catalog-search-form select,
  .quote-form input,
  .quote-form textarea {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
  }

  .catalog-results {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .product-gallery,
  .product-info {
    padding: 16px;
    border-radius: 16px;
  }

  .product-cover {
    aspect-ratio: 1.12;
    border-radius: 12px;
  }

  .thumb-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .detail-actions {
    display: grid;
    gap: 10px;
  }

  .quote-form {
    width: 100%;
  }

  .whatsapp-float {
    width: 64px;
    height: 64px;
    right: 20px;
    bottom: 22px;
    font-size: 1.8rem;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: clamp(2.45rem, 14vw, 3.5rem);
  }

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

  .product-media {
    height: 188px;
  }

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

  .social-row a {
    width: 44px;
    height: 44px;
  }
}

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

.user-access {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #050507;
  font-size: 1.15rem;
}

.service-info {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 5vw, 96px);
  background: #fff;
  color: #101218;
}

.service-info .section-head span { color: var(--red); }
.service-info .section-head p { color: #526071; }

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e1e6ef;
  border-radius: 18px;
  background: #e1e6ef;
}

.service-info-grid article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

.service-info-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.service-info-grid p {
  margin: 0;
  color: #526071;
  line-height: 1.75;
}

.sector-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sector-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #101218;
  color: #fff;
  font-weight: 900;
}

.quote-chatbot {
  position: fixed;
  z-index: 70;
  right: 34px;
  bottom: 126px;
}

.chatbot-toggle {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed2339, #8d1124);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 55px rgba(0,0,0,.34);
  cursor: pointer;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: #101218;
  color: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
}

.quote-chatbot.is-open .chatbot-panel { display: block; }

.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(135deg, #171b24, #050507);
}

.chatbot-head strong,
.chatbot-head span { display: block; }
.chatbot-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .86rem;
}

.chatbot-head button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
}

.chatbot-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.bot-message {
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255,255,255,.08);
  color: #dce3ee;
  line-height: 1.55;
}

.bot-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bot-options button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 850;
}

.bot-options button.is-selected {
  border-color: rgba(237,35,57,.8);
  background: rgba(237,35,57,.22);
}

.chatbot-form {
  display: grid;
  gap: 10px;
}

.chatbot-form label {
  display: grid;
  gap: 6px;
  color: #c5ceda;
  font-size: .88rem;
  font-weight: 850;
}

.chatbot-form input,
.chatbot-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px;
  outline: 0;
}

.chatbot-form textarea {
  min-height: 86px;
  resize: vertical;
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto auto auto;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .service-info {
    padding: 64px 18px;
  }

  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-info-grid article {
    min-height: 0;
  }

  .user-access {
    width: 42px;
    height: 42px;
  }

  .quote-chatbot {
    right: 20px;
    bottom: 96px;
  }

  .chatbot-toggle {
    width: 58px;
    height: 58px;
    font-size: 1.55rem;
  }

  .chatbot-panel {
    right: -4px;
    bottom: 72px;
  }

  .bot-options {
    grid-template-columns: 1fr;
  }
}

/* Premium EXS visual refresh inspired by international automotive ecommerce. */
.eys-topbar {
  top: 0;
  width: 100%;
  max-width: none;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  padding: 18px clamp(20px, 6vw, 124px);
  background: rgba(3,5,9,.86);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  grid-template-columns: auto minmax(240px, 520px) 1fr auto;
}

.eys-topbar .brand-lockup img {
  width: clamp(190px, 18vw, 300px);
  max-height: 70px;
}

.nav-search {
  display: grid;
  grid-template-columns: 1fr 48px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.nav-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: #101218;
  outline: 0;
}

.nav-search button {
  border: 0;
  background: #fff;
  color: #050507;
  font-size: 1.25rem;
  cursor: pointer;
}

.eys-topbar .nav-links {
  justify-content: flex-end;
}

.eys-topbar .nav-links a {
  color: #f5f7fb;
  font-size: .92rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eys-topbar .nav-links a:hover {
  color: #2f74ff;
}

.cart-access {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.22rem;
}

.cart-access span {
  position: absolute;
  top: 4px;
  right: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  font-size: .68rem;
  font-weight: 1000;
}

.hero-engine {
  min-height: 720px;
}

.hero-engine .hero-slide {
  padding-top: 148px;
  padding-bottom: 160px;
  background:
    radial-gradient(circle at 70% 58%, rgba(255,255,255,.1), transparent 22%),
    radial-gradient(circle at 76% 80%, rgba(36,87,255,.24), transparent 17%),
    radial-gradient(circle at 92% 82%, rgba(215,25,45,.22), transparent 17%),
    linear-gradient(90deg, rgba(1,3,8,.98) 0%, rgba(3,5,10,.92) 42%, rgba(3,5,10,.62) 100%),
    var(--hero-image) center right/cover;
}

.hero-engine .hero-content {
  max-width: 620px;
}

.hero-engine .hero-content h1 {
  max-width: 620px;
  font-size: clamp(4.4rem, 8vw, 7.9rem);
  font-style: italic;
  text-shadow: 0 12px 38px rgba(0,0,0,.5);
}

.hero-kicker {
  color: #ff273b !important;
  font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
  font-weight: 1000;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.engine-finder {
  position: absolute;
  z-index: 5;
  left: clamp(20px, 6vw, 124px);
  right: clamp(20px, 6vw, 124px);
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(5,7,12,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.engine-finder label {
  display: grid;
  gap: 6px;
}

.engine-finder span {
  color: #9ea8b8;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.engine-finder input,
.engine-finder select {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 0 12px;
  outline: 0;
}

.engine-finder option {
  color: #101218;
}

.featured-categories {
  padding-top: 34px;
  background: linear-gradient(180deg, #f2f4f8, #fff);
}

.featured-categories .section-head {
  max-width: none;
  margin-bottom: 18px;
  text-align: center;
}

.featured-categories .section-head h2 {
  color: #101218;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.86)),
    var(--category-image) center/cover;
  box-shadow: 0 24px 70px rgba(16,18,24,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 90px rgba(16,18,24,.24);
}

.category-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.category-card span::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--red);
}

.premium-search-band {
  margin-top: 10px;
  padding: 24px;
  border: 1px solid #dfe4ee;
  border-radius: 18px;
  background: #fff;
}

.premium-brands {
  margin-top: 34px;
}

.trust-strip i {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.6rem;
}

.product-showcase {
  background:
    radial-gradient(circle at 10% 20%, rgba(36,87,255,.13), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(215,25,45,.11), transparent 24%),
    #07090f;
}

@media (max-width: 1180px) {
  .eys-topbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-search {
    grid-column: 1 / -1;
    order: 4;
  }

  .eys-topbar .nav-links {
    grid-column: 1 / -1;
  }

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

  .engine-finder button {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .eys-topbar {
    width: 100%;
    padding: 10px 14px;
    grid-template-columns: auto auto auto;
  }

  .eys-topbar .brand-lockup img {
    width: min(170px, 46vw);
  }

  .nav-search {
    min-height: 44px;
  }

  .hero-engine {
    min-height: 100svh;
  }

  .hero-engine .hero-slide {
    padding: 150px 18px 300px;
    background:
      linear-gradient(180deg, rgba(3,5,10,.58), rgba(3,5,10,.95)),
      var(--hero-image) center/cover;
  }

  .hero-engine .hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .engine-finder {
    left: 14px;
    right: 14px;
    bottom: 18px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

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

  .category-card {
    min-height: 190px;
  }
}

/* Final public-home direction: dark automotive storefront inspired by the approved reference. */
.eys-topbar {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  min-height: 112px;
  transform: none;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 44px);
  padding: 14px clamp(24px, 6vw, 132px) 10px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: rgba(3,5,10,.94);
  box-shadow: 0 16px 48px rgba(0,0,0,.36);
}

.eys-topbar .brand-lockup {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: clamp(220px, 22vw, 360px);
}

.eys-topbar .brand-lockup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 28px;
  height: 28px;
  border-right: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: #03050a;
  transform: translateX(-50%) rotate(45deg);
}

.eys-topbar .brand-lockup img {
  position: relative;
  z-index: 1;
  width: clamp(230px, 22vw, 360px);
  max-height: 78px;
  aspect-ratio: 760 / 475;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.55));
}

.eys-topbar .nav-links {
  justify-content: center;
  gap: clamp(6px, 1.1vw, 22px);
}

.eys-topbar .nav-links a {
  padding: 12px 8px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 1000;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.eys-topbar .nav-links a:first-child,
.eys-topbar .nav-links a:hover {
  color: #1d6dff;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.search-access,
.user-access,
.cart-access {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}

.search-access:hover,
.user-access:hover,
.cart-access:hover {
  background: rgba(255,255,255,.08);
}

.cart-access span {
  top: 4px;
  right: 2px;
  background: #f31824;
}

.nav-search-panel {
  position: absolute;
  right: clamp(24px, 6vw, 132px);
  top: calc(100% + 12px);
  display: none;
  grid-template-columns: minmax(220px, 420px) 48px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(5,7,12,.96);
  box-shadow: 0 22px 70px rgba(0,0,0,.44);
}

.eys-topbar.search-open .nav-search-panel {
  display: grid;
}

.nav-search-panel input {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 18px;
  outline: 0;
}

.nav-search-panel input::placeholder {
  color: rgba(255,255,255,.56);
}

.nav-search-panel button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #07080b;
  cursor: pointer;
}

.hero-engine {
  min-height: 700px;
  background: #020307;
}

.hero-engine .hero-slide {
  min-height: 700px;
  align-items: center;
  padding: 150px clamp(28px, 6.7vw, 132px) 70px;
  background:
    radial-gradient(circle at 78% 84%, rgba(29,109,255,.36), transparent 13%),
    radial-gradient(circle at 88% 82%, rgba(243,24,36,.34), transparent 15%),
    linear-gradient(90deg, rgba(2,4,9,.98) 0%, rgba(2,4,9,.9) 42%, rgba(2,4,9,.5) 100%),
    var(--hero-image) center right/cover;
}

.hero-engine .hero-content {
  max-width: 620px;
  padding-top: 24px;
}

.hero-engine .hero-content h1 {
  max-width: 660px;
  margin-bottom: 20px;
  color: #f5f7fb;
  font-size: clamp(4.8rem, 8.2vw, 8rem);
  font-style: italic;
  font-weight: 1000;
  line-height: .83;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(255,255,255,.14), 0 24px 45px rgba(0,0,0,.65);
}

.hero-engine .hero-content p:not(.hero-kicker) {
  max-width: 520px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
}

.hero-kicker {
  margin-bottom: 20px;
  color: #ff1e2c !important;
  font-size: clamp(1.2rem, 2vw, 1.78rem) !important;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.premium-btn.outline-red {
  min-height: 60px;
  padding-inline: 28px;
  border: 2px solid #f31824;
  border-radius: 8px;
  background: rgba(0,0,0,.18);
  color: #fff;
  box-shadow: none;
  text-transform: uppercase;
}

.premium-btn.outline-red:hover {
  background: #f31824;
  box-shadow: 0 18px 46px rgba(243,24,36,.32);
}

.hero-engine .hero-controls {
  bottom: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  gap: 12px;
}

.hero-engine .hero-controls > button {
  display: none;
}

.hero-engine .hero-dots button {
  width: 12px;
  height: 12px;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.44);
}

.hero-engine .hero-dots button.is-active {
  background: #f31824;
}

.featured-categories {
  position: relative;
  padding: 22px clamp(22px, 5.8vw, 112px) 46px;
  background: linear-gradient(180deg, #e6e7ea 0%, #f8f8fa 100%);
  color: #101218;
}

.featured-title {
  margin: 0 0 18px;
  color: #111318;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.category-stage {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.category-stage-arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111318;
  font-size: 1.6rem;
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  cursor: pointer;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 24px);
  margin: 0;
}

.category-card {
  min-height: clamp(190px, 15vw, 245px);
  border: 1px solid rgba(7,8,11,.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(4,6,11,.12), rgba(4,6,11,.92)),
    var(--category-image) center/cover;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.category-card span {
  bottom: 26px;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  letter-spacing: .01em;
}

.featured-categories .premium-search-band {
  display: none;
}

.whatsapp-float {
  right: clamp(22px, 3vw, 44px);
  bottom: 32px;
  z-index: 42;
}

.quote-chatbot {
  z-index: 44;
}

@media (max-width: 1180px) {
  .eys-topbar {
    min-height: 92px;
    grid-template-columns: auto auto auto;
  }

  .eys-topbar .brand-lockup {
    min-width: 210px;
  }

  .eys-topbar .brand-lockup img {
    width: 220px;
    max-height: 62px;
  }

  .eys-topbar .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px 24px 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(3,5,10,.98);
  }

  .eys-topbar .nav-links.is-open {
    display: grid;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

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

@media (max-width: 720px) {
  .eys-topbar {
    min-height: 78px;
    padding: 8px 14px;
    gap: 8px;
  }

  .eys-topbar .brand-lockup {
    min-width: 0;
  }

  .eys-topbar .brand-lockup::after {
    display: none;
  }

  .eys-topbar .brand-lockup img {
    width: min(178px, 44vw);
    max-height: 52px;
  }

  .search-access,
  .user-access,
  .cart-access,
  .menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.16rem;
  }

  .user-access {
    display: none;
  }

  .nav-search-panel {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr 44px;
  }

  .hero-engine,
  .hero-engine .hero-slide {
    min-height: 650px;
  }

  .hero-engine .hero-slide {
    padding: 118px 18px 64px;
    background:
      linear-gradient(180deg, rgba(2,4,9,.64), rgba(2,4,9,.96)),
      var(--hero-image) center/cover;
  }

  .hero-engine .hero-content h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .hero-engine .hero-content p:not(.hero-kicker) {
    font-size: 1.05rem;
  }

  .premium-btn.outline-red {
    width: 100%;
  }

  .featured-categories {
    padding: 20px 14px 34px;
  }

  .category-stage {
    display: block;
  }

  .category-stage-arrow {
    display: none;
  }

  .category-cards {
    grid-template-columns: repeat(5, minmax(220px, 72vw));
    gap: 14px;
    overflow-x: auto;
    padding: 0 4px 12px;
    scroll-snap-type: x mandatory;
  }

  .category-card {
    min-height: 210px;
    scroll-snap-align: start;
  }
}

/* Chatbot final: compact on desktop, contained on mobile, with two WhatsApp targets. */
.quote-chatbot {
  right: clamp(18px, 3vw, 42px);
  bottom: 112px;
}

.chatbot-panel {
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100dvh - 152px));
  overflow: hidden;
}

.chatbot-body {
  max-height: calc(min(720px, 100dvh - 152px) - 82px);
  overflow-y: auto;
  padding-right: 12px;
}

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

.bot-options button {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.15;
}

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

.chatbot-submit-grid .premium-btn {
  min-height: 54px;
  padding-inline: 12px;
  white-space: nowrap;
}

.whatsapp-float {
  width: 78px;
  height: 78px;
}

.chatbot-toggle {
  width: 72px;
  height: 72px;
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 18px;
    bottom: 28px;
    width: 66px;
    height: 66px;
    font-size: 2rem;
  }

  .quote-chatbot {
    right: 18px;
    bottom: 104px;
    left: auto;
  }

  .chatbot-toggle {
    width: 62px;
    height: 62px;
    font-size: 1.45rem;
  }

  .chatbot-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 174px;
    width: auto;
    max-height: calc(100dvh - 250px);
    border-radius: 20px;
  }

  .chatbot-body {
    max-height: calc(100dvh - 332px);
    padding: 14px;
  }

  .chatbot-head {
    padding: 14px 16px;
  }

  .bot-options {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bot-options button {
    min-height: 42px;
    padding: 8px;
    font-size: .86rem;
  }

  .chatbot-form {
    gap: 10px;
  }

  .chatbot-form label {
    gap: 6px;
    font-size: .88rem;
  }

  .chatbot-form input,
  .chatbot-form textarea {
    min-height: 46px;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: .94rem;
  }

  .chatbot-form textarea {
    min-height: 82px;
  }

  .chatbot-submit-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-submit-grid .premium-btn {
    min-height: 50px;
  }
}

/* Dark catalog/detail views aligned with the dashboard reference. */
.catalog-page,
.product-page {
  min-height: 100vh;
  padding: 142px clamp(16px, 4vw, 72px) 56px;
  background:
    radial-gradient(circle at 8% 8%, rgba(29,109,255,.16), transparent 28%),
    radial-gradient(circle at 96% 16%, rgba(243,24,36,.12), transparent 24%),
    #05070c;
  color: #f5f7fb;
}

.catalog-page-head {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(9,13,20,.86);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.catalog-page-head .eyebrow,
.product-info .eyebrow {
  color: #1d6dff;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catalog-page-head h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 4.8rem);
  font-style: italic;
  line-height: .92;
  text-transform: uppercase;
}

.catalog-search-form {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr repeat(2, 1fr) auto;
  gap: 10px;
}

.catalog-search-form input,
.catalog-search-form select,
.quote-form input,
.quote-form textarea {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #0c1119;
  color: #fff;
  padding: 0 14px;
  outline: 0;
}

.catalog-search-form input::placeholder,
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,.48);
}

.catalog-search-form select option {
  color: #111318;
}

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

.catalog-page .catalog-card,
.product-page .catalog-card {
  border-radius: 10px;
  background: #080c13;
}

.catalog-page .product-media {
  min-height: 210px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, .92fr);
  gap: 22px;
  align-items: start;
}

.product-gallery,
.product-info {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(9,13,20,.88);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.product-gallery {
  padding: 18px;
}

.product-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
  background: #070a10;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  object-fit: cover;
}

.product-info {
  padding: clamp(20px, 3vw, 34px);
}

.product-info h1 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-style: italic;
  line-height: .95;
  text-transform: uppercase;
}

.product-info > p:not(.eyebrow) {
  color: #aeb8c7;
  line-height: 1.65;
}

.detail-price-panel {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(29,109,255,.26);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29,109,255,.14), rgba(255,255,255,.035));
}

.detail-price-panel strong {
  color: #fff;
  font-size: 2rem;
}

.sale-ribbon {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f31824;
  color: #fff;
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}

.spec-grid div {
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}

.spec-grid span {
  display: block;
  color: #8792a3;
  font-size: .72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: .95rem;
}

.detail-actions,
.quote-form {
  display: grid;
  gap: 10px;
}

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

.detail-actions .premium-btn.light {
  grid-column: 1 / -1;
}

.quote-form {
  display: none;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.quote-form.is-open {
  display: grid;
}

.quote-form textarea {
  min-height: 110px;
  padding-top: 12px;
}

@media (max-width: 1180px) {
  .catalog-search-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-search-form .premium-btn {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 720px) {
  .catalog-page,
  .product-page {
    padding: 108px 12px 38px;
  }

  .catalog-page-head {
    padding: 16px;
  }

  .catalog-search-form,
  .catalog-results,
  .spec-grid,
  .detail-actions {
    grid-template-columns: 1fr;
  }

  .product-info,
  .product-gallery {
    padding: 14px;
  }
}
