:root {
  --red: #007a5a;
  --red-dark: #00543f;
  --ink: #111414;
  --muted: #626866;
  --line: #e1e7e4;
  --paper: #ffffff;
  --soft: #f5f8f6;
  --charcoal: #101615;
  --gold: #d8a11d;
  --max: 1180px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.topbar {
  background: var(--charcoal);
  color: #fff;
  font-size: 0.88rem;
}

.topbar__inner,
.header__inner,
.section__inner,
.footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.socials a,
.lang button {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
}

.socials a {
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
}

.socials svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.lang {
  display: flex;
  gap: 6px;
}

.lang button {
  background: transparent;
  cursor: pointer;
}

.lang button.is-active {
  background: var(--red);
  border-color: var(--red);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 22, 21, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

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

.brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand span {
  white-space: nowrap;
  color: #fff;
}

.brand:hover span,
.brand:focus-visible span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__link {
  height: 74px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 700;
  color: #fff;
}

.nav__link:hover,
.nav__item:hover .nav__link {
  color: var(--red);
}

.nav__link--icon {
  width: 50px;
  justify-content: center;
  padding: 0;
}

.nav__link--icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-search {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--charcoal);
  color: #fff;
}

.mobile-search:hover {
  color: var(--red);
}

.mobile-search svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.dropdown a:hover {
  background: var(--soft);
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--charcoal);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  min-height: clamp(430px, 62vw, 680px);
}

[data-slider] {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.slide__content {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.slide h1,
.page-hero h1 {
  margin: 10px 0 12px;
  max-width: 720px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.slide p,
.page-hero p {
  max-width: 580px;
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--red);
  color: #fff;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  background: var(--red-dark);
}

.button--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.slider-controls {
  position: absolute;
  right: max(16px, calc((100% - var(--max)) / 2));
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.section {
  padding: 70px 0;
}

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

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section__head h2,
.content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0;
}

.section__head p {
  margin: 8px 0 0;
  max-width: 640px;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-search {
  width: min(100%, 430px);
}

.product-search__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-search__field {
  display: grid;
  grid-template-columns: 1fr 46px;
  border: 1px solid #d5d5d5;
  background: #fff;
}

.product-search__field:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
}

.product-search__field input {
  min-height: 48px;
  width: 100%;
  border: 0;
  padding: 0 14px;
  font: inherit;
  outline: 0;
}

.product-search__field button {
  border: 0;
  border-left: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.product-search__field button:hover {
  background: var(--red);
  color: #fff;
}

.product-search--inline {
  flex: 0 1 360px;
  margin-left: auto;
}

.product-search__meta {
  margin: -12px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.product-search__empty {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 18px 20px;
  color: var(--muted);
  font-weight: 800;
}

.home-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.home-overview h2,
.home-cta h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.home-overview p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.home-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-overview__actions .button--ghost {
  color: var(--charcoal);
}

.home-overview__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.home-overview__facts div {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.home-overview__facts strong {
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.home-overview__facts span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.home-area-card {
  min-height: 336px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 12px 22px;
  color: var(--ink);
  overflow: hidden;
}

.home-area-card:hover {
  border-color: rgba(0, 122, 90, 0.5);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.home-area-card span {
  color: var(--red);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 16px 10px 0;
}

.home-area-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f7f6;
  transition: transform 0.3s ease;
}

.home-area-card:hover img {
  transform: scale(1.03);
}

.home-area-card h3 {
  margin: 12px 10px;
  font-size: 1.3rem;
}

.home-area-card p {
  margin: 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.home-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-brand-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  font-weight: 800;
}

.home-brand-strip a:hover {
  border-color: var(--red);
  color: var(--red);
}

.home-cta {
  padding-top: 0;
}

.home-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--charcoal);
  color: #fff;
  padding: clamp(28px, 5vw, 52px);
}

.home-cta__panel h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-card,
.model-card,
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
}

.category-card {
  min-height: 210px;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

.category-card::before {
  content: none;
}

.category-card img {
  position: relative;
  width: 100%;
  height: 156px;
  object-fit: contain;
  object-position: center;
  padding: 16px 10px 8px;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card strong {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 16px;
  background: var(--charcoal);
  color: #fff;
  font-size: 1.15rem;
}

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

.zoomable {
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.zoomable:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 96vw);
  max-height: 86vh;
  object-fit: contain;
  background: #fff;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close {
  top: 18px;
  right: 18px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 18px;
}

.lightbox__nav--next {
  right: 18px;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 800;
}

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

.filter-bar a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.filter-bar a.is-active,
.filter-bar a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.model-card {
  display: flex;
  flex-direction: column;
}

.model-card.is-filtered-out {
  display: none;
}

.model-card__image {
  aspect-ratio: 4 / 3;
  background: #eee;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-card__body {
  padding: 20px;
}

.model-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.model-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: end;
  background: var(--charcoal);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.74), rgba(0,0,0,0.18));
}

.page-hero__inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 58px;
}

.content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.content p {
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.profile-section {
  background: #fff;
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.profile-copy h2,
.profile-feature h2 {
  margin: 10px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0;
}

.profile-copy p,
.profile-feature p {
  margin: 0 0 16px;
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.profile-media,
.profile-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

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

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 46px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-stats div {
  min-height: 124px;
  padding: 24px;
  background: #fff;
}

.profile-stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.profile-stats span {
  display: block;
  margin-top: 10px;
  color: #333;
  font-weight: 700;
  line-height: 1.35;
}

.profile-feature {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.moto-hero {
  min-height: 620px;
  overflow: hidden;
  background-position: center;
}

.moto-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 45%);
}

.moto-hero .page-hero__inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 34px;
  align-items: end;
  padding: 96px 0 64px;
}

.moto-hero__content {
  position: relative;
  z-index: 2;
}

.moto-hero__content h1 {
  max-width: 780px;
}

.moto-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.moto-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.moto-hero__highlights span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.moto-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 48%, #ffffff 100%);
}

.moto-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.moto-page__copy h2,
.moto-page__section h2 {
  margin: 10px 0 18px;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.moto-page__copy p,
.moto-page__section p,
.moto-page__info-grid p {
  margin: 0 0 16px;
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.moto-page__stats {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.moto-page__stats div {
  padding: 24px;
  background: #fff;
}

.moto-page__stats strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.moto-page__stats span {
  display: block;
  color: #222;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.moto-page__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}

.moto-page__info-grid article {
  min-height: 280px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #202020;
  background: var(--charcoal);
  color: #fff;
}

.moto-page__info-grid article:only-child {
  grid-column: 1 / -1;
}

.moto-page__info-grid article:nth-child(2) {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.moto-page__info-grid h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.moto-page__info-grid article:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

.moto-page__section {
  margin-top: 62px;
}

.moto-page__section p {
  max-width: 760px;
}

.moto-page__gallery {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.moto-page__gallery .feature-card {
  overflow: hidden;
  border: 1px solid #dfdfdf;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.moto-page__gallery .feature-card:hover {
  transform: translateY(-4px);
  border-color: #cfcfcf;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
}

.moto-page__gallery .feature-card img {
  object-fit: contain;
  object-position: center bottom;
  padding: 18px 18px 28px;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 122, 90, 0.13), transparent 34%),
    linear-gradient(135deg, #f7f7f7, #e8e8e8);
  transition: transform 0.2s ease;
}

.moto-page__gallery .feature-card:hover img {
  transform: scale(1.035);
}

.moto-page__gallery .moto-page__image--center,
.moto-page__gallery .moto-page__image--right {
  object-position: center bottom;
}

.moto-page__tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solis-hero {
  background-position: center;
}

.solis-product-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.solis-product-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  overflow: hidden;
}

.solis-product-card__media,
.solis-product-card__body {
  background: #fff;
}

.solis-product-card__media {
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 52px);
  background:
    radial-gradient(circle at 50% 70%, rgba(0, 122, 90, 0.13), transparent 36%),
    linear-gradient(135deg, #f7f7f7, #e8eee9);
}

.solis-product-card__media img {
  width: min(100%, 520px);
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.18));
}

.solis-product-card__body {
  padding: clamp(24px, 4vw, 42px);
}

.solis-product-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0;
}

.solis-product-card p {
  margin: 0 0 22px;
  color: #3d3d3d;
  font-size: 1.03rem;
  line-height: 1.65;
}

.spec-tabs {
  border: 1px solid var(--line);
  background: #fff;
}

.spec-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-tabs__nav button {
  flex: 1 1 150px;
  min-height: 46px;
  padding: 12px 14px;
  border: 0;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.spec-tabs__nav button:hover,
.spec-tabs__nav button.is-active {
  background: var(--red);
  color: #fff;
}

.spec-tabs__panel {
  display: none;
  padding: 18px;
}

.spec-tabs__panel.is-active {
  display: block;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.spec-list div {
  min-height: 68px;
  padding: 14px;
  background: #fff;
}

.spec-list dt {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.daytona-hero {
  background-position: center;
}

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

.daytona-product-card img {
  height: 320px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  padding: 28px;
}

.daytona-product-card h3 {
  min-height: 58px;
}

.drc-hero::before {
  background:
    linear-gradient(90deg, rgba(9, 14, 13, 0.88), rgba(9, 14, 13, 0.52) 54%, rgba(9, 14, 13, 0.22)),
    linear-gradient(180deg, rgba(9, 14, 13, 0.08), rgba(9, 14, 13, 0.62));
}

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

.drc-product-card .spec-list {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.drc-product-card .spec-list div {
  min-height: 0;
  padding: 12px;
}

.drc-product-card .spec-list dt {
  font-size: 0.68rem;
}

.drc-product-card .spec-list dd {
  font-size: 0.9rem;
}

.mitas-hero::before {
  background:
    linear-gradient(90deg, rgba(9, 14, 13, 0.9), rgba(9, 14, 13, 0.52) 55%, rgba(9, 14, 13, 0.18)),
    linear-gradient(180deg, rgba(9, 14, 13, 0.04), rgba(9, 14, 13, 0.62));
}

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

.mitas-product-card img {
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.mitas-product-card .spec-list {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.mitas-product-card .spec-list div {
  min-height: 0;
  padding: 12px;
}

.mitas-product-card .spec-list dt {
  font-size: 0.68rem;
}

.mitas-product-card .spec-list dd {
  font-size: 0.9rem;
}

.parts-hero {
  background:
    linear-gradient(135deg, rgba(16, 22, 21, 0.94), rgba(0, 122, 90, 0.76)),
    url("img/bike-spare-parts/chain.svg");
  background-size: cover, min(520px, 68vw);
  background-position: center, right 9% center;
  background-repeat: no-repeat;
}

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

.bike-parts-grid .feature-card img {
  padding: 34px;
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 122, 90, 0.12), transparent 38%),
    linear-gradient(135deg, #f7f7f7, #e8eee9);
}

.profile-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
}

.profile-gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.profile-gallery figure:first-child img {
  object-position: center;
}

.profile-gallery figure:last-child img {
  object-position: center top;
}

.profile-gallery figcaption {
  padding: 12px 14px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-panel,
.spec-panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  color: #333;
}

.form {
  display: grid;
  gap: 14px;
}

.form.is-sending {
  opacity: 0.82;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #d4d4d4;
  padding: 12px;
  font: inherit;
}

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

.form-notice {
  border: 1px solid var(--line);
  border-left: 4px solid #777;
  background: #fff;
  padding: 11px 13px 11px 14px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2f2f2f;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.form-notice--success {
  border-color: #cfe5d7;
  border-left-color: #2f7d4f;
  background: #f5fbf7;
  color: #244d35;
}

.form-notice--error {
  border-color: #efd1d4;
  border-left-color: #c5141c;
  background: #fff7f8;
  color: #6f1e24;
}

.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.15);
}

.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

.product-hero__media {
  position: relative;
  background: transparent;
  border: 0;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.product-color-viewer {
  align-content: center;
  gap: 18px;
  padding: 28px 24px 22px;
}

.product-hero__media img {
  position: relative;
  z-index: 1;
  width: min(122%, 860px);
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.color-variants {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.color-variants button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.color-variants button.is-active,
.color-variants button:hover {
  border-color: var(--red);
  color: var(--red);
}

.color-dot {
  width: 18px;
  height: 18px;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
  display: inline-block;
}

.color-dot--red-silver {
  background: linear-gradient(135deg, #c5141c 0 48%, #d9d9d9 49% 100%);
}

.color-dot--red {
  background: #c5141c;
}

.color-dot--black-red {
  background: linear-gradient(135deg, #111 0 50%, #c5141c 51% 100%);
}

.color-dot--white-red {
  background: linear-gradient(135deg, #fff 0 50%, #c5141c 51% 100%);
}

.color-dot--black {
  background: #111;
}

.color-dot--black-yellow {
  background: linear-gradient(135deg, #111 0 50%, #f1c400 51% 100%);
}

.color-dot--white-yellow {
  background: linear-gradient(135deg, #fff 0 50%, #f1c400 51% 100%);
}

.color-dot--yellow {
  background: #f1c400;
}

.color-dot--blue {
  background: #205d9f;
}

.color-dot--green {
  background: #38664f;
}

.color-dot--grey {
  background: #8f969b;
}

.color-dot--silver {
  background: linear-gradient(135deg, #f2f3f5 0 50%, #8b9098 51% 100%);
}

.color-dot--white {
  background: #fff;
}

.product-hero h1 {
  margin: 8px 0 8px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.price {
  margin: 18px 0;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
}

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

.check-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 8px;
}

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

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

.gallery-item {
  border: 1px solid var(--line);
  background: #fff;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--soft);
}

.gallery-item figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.viewer-360 {
  background: #fff;
}

.viewer-360__stage {
  position: relative;
  min-height: clamp(340px, 54vw, 650px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.viewer-360__stage:active {
  cursor: grabbing;
}

.viewer-360__stage img {
  width: min(100%, 1120px);
  height: 100%;
  max-height: 650px;
  object-fit: contain;
  padding: 20px 64px 10px;
}

.viewer-360__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #dadada;
  background: #fff;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.viewer-360__button:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.viewer-360__button--prev {
  left: 18px;
}

.viewer-360__button--next {
  right: 18px;
}

.viewer-360__count {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.viewer-360__controls {
  padding: 8px 0 0;
  display: flex;
  justify-content: center;
}

.viewer-360__numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-top: 1px solid #ddd;
  padding-top: 14px;
}

.viewer-360__numbers button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #777;
  font-weight: 900;
  cursor: pointer;
}

.viewer-360__numbers button.is-active,
.viewer-360__numbers button:hover {
  color: var(--red);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ddd;
}

.feature-card__body {
  padding: 20px;
}

.feature-card h3 {
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

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

.spec-table th {
  color: var(--muted);
  width: 42%;
}

.footer {
  background: var(--charcoal);
  color: #fff;
  padding: 42px 0 24px;
}

.footer__inner {
  display: grid;
  gap: 28px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer__brand {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.footer__brand:hover,
.footer__brand:focus-visible {
  color: var(--red);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 10px 0 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer__partner-link,
.footer__bottom a[href*="motoalbania.com"] {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.footer__partner-link:hover,
.footer__partner-link:focus-visible,
.footer__bottom a[href*="motoalbania.com"]:hover,
.footer__bottom a[href*="motoalbania.com"]:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 4px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-shortcut {
  position: fixed;
  right: 82px;
  bottom: 22px;
  z-index: 40;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-weight: 800;
}

.contact-shortcut:hover {
  background: var(--red);
  color: #fff;
}

.contact-shortcut:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.contact-shortcut svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ededed, #cfcfcf);
  color: #777;
  font-weight: 800;
}

@media (max-width: 940px) {
  .header__actions {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand span {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: normal;
  }

  .nav {
    position: fixed;
    inset: 107px 0 auto 0;
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    height: auto;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--red);
    font-weight: 900;
  }

  .dropdown a {
    color: #333;
    font-weight: 700;
  }

  .nav .nav__link--icon {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    background: var(--soft);
  }

  .category-grid,
  .models-grid,
  .feature-grid,
  .gallery-grid,
  .home-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .product-hero,
  .profile-intro,
  .profile-feature,
  .home-overview__grid,
  .moto-hero .page-hero__inner,
  .moto-page__intro,
  .moto-page__info-grid,
  .solis-product-card {
    grid-template-columns: 1fr;
  }

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

  .home-cta__panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .moto-hero {
    min-height: auto;
  }

  .moto-hero .page-hero__inner {
    min-height: auto;
    padding: 78px 0 54px;
  }

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

@media (max-width: 620px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .contact-shortcut {
    right: 66px;
    bottom: 16px;
    min-height: 42px;
    padding: 0 13px;
    gap: 7px;
    font-size: 0.86rem;
  }

  .topbar__inner {
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
  }

  .socials {
    gap: 8px;
  }

  .socials a,
  .lang button {
    min-width: 32px;
    min-height: 30px;
  }

  .header__inner {
    gap: 10px;
  }

  .brand span {
    font-size: 0.82rem;
    max-width: 96px;
  }

  .slide__content {
    padding-bottom: 92px;
  }

  .section {
    padding: 48px 0;
  }

  .section__head,
  .footer__top {
    display: block;
  }

  .filter-row {
    display: block;
  }

  .product-search {
    width: 100%;
    margin-top: 22px;
  }

  .category-grid,
  .models-grid,
  .feature-grid,
  .gallery-grid,
  .home-card-grid,
  .home-overview__facts,
  .profile-stats,
  .profile-gallery {
    grid-template-columns: 1fr;
  }

  .profile-intro,
  .profile-feature,
  .home-overview__grid,
  .moto-page__intro,
  .moto-page__info-grid {
    gap: 26px;
  }

  .home-area-card {
    min-height: 0;
  }

  .home-area-card h3 {
    margin-top: 12px;
  }

  .home-brand-strip a {
    width: 100%;
  }

  .moto-hero .page-hero__inner {
    padding: 58px 0 44px;
  }

  .moto-hero__actions {
    display: grid;
  }

  .moto-hero__highlights {
    gap: 8px;
  }

  .moto-hero__highlights span {
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .moto-page__stats div,
  .moto-page__info-grid article,
  .solis-product-card__body {
    padding: 22px;
  }

  .moto-page__gallery {
    grid-template-columns: 1fr;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .profile-stats {
    margin: 34px 0;
  }

  .profile-stats div {
    min-height: 106px;
    padding: 20px;
  }

  .profile-gallery img {
    height: 260px;
  }

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

  .category-card img {
    height: 218px;
    padding: 18px 14px 10px;
  }

  .category-card strong {
    min-height: 54px;
    padding: 14px 16px;
  }

  .product-hero__media {
    min-height: 300px;
  }
}
