﻿:root {
  --huee-primary: #ef2b1d;
  --huee-dark: #071013;
  --huee-light: #ffffff;
  --huee-muted: #b9c0c7;
  --huee-gold: #f7c46c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--huee-light);
  background: #ffffff;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

.container {
  max-width: 1400px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #070809;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 680ms ease, visibility 680ms ease;
}

.page-loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 26px;
  animation: loaderIntro 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-loader-inner img {
  width: clamp(158px, 11vw, 198px);
  max-height: 62px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(7, 8, 9, 0.08));
}

.page-loader-ring {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #070809 0deg, rgba(7, 8, 9, 0.56) 84deg, rgba(7, 8, 9, 0.08) 150deg, rgba(7, 8, 9, 0.08) 360deg);
  animation: loaderRing 1.05s linear infinite;
}

.page-loader-ring::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #fbfbfb;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderRing {
  to {
    transform: rotate(1turn);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader-inner,
  .page-loader-ring {
    transition: none;
    animation: none;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background 220ms ease;
}

.site-header.header-solid {
  position: absolute;
}

.topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: #d9e1e8;
  background: rgba(11, 13, 15, 0.96);
  border-top: 2px solid rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 400;
  transition: background 220ms ease, border-color 220ms ease;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.topbar-contact a,
.topbar-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-contact a:hover {
  color: var(--huee-gold);
}

.topbar-device-query {
  color: #58b7ff;
}

.topbar-device-query i {
  font-size: 15px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  width: auto;
  height: auto;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.topbar-social a:hover {
  color: var(--huee-gold);
}

.topbar-social .topbar-device-query:hover {
  color: #8fd0ff;
}

.main-nav {
  position: relative;
  min-height: 100px;
  background: linear-gradient(180deg, rgba(18, 20, 23, 0.9), rgba(18, 20, 23, 0.12));
  transition: top 220ms ease, background 220ms ease, min-height 220ms ease;
}

.site-header.header-solid .topbar {
  background: #0d0f10;
  border-top-color: rgba(255, 255, 255, 0.22);
}

.site-header.header-solid .main-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: #080808;
}

.navbar-brand img {
  width: 160px;
  max-height: 48px;
  object-fit: contain;
}

.navbar-toggler {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  font-size: 26px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  gap: 24px;
}

.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #ffffff;
}

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

.mobile-header-actions,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

.icon-btn {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  transition: color 180ms ease, opacity 180ms ease;
}

.icon-btn:hover {
  color: #ffffff;
}

.cart-btn span {
  position: absolute;
  top: -5px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  color: #141414;
  background: #ffffff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
}

.account-menu {
  position: relative;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -8px;
  z-index: 30;
  min-width: 164px;
  padding: 8px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.account-dropdown::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 100%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(6px) rotate(45deg);
}

.account-dropdown a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: #111315;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.account-dropdown a:hover {
  background: #f2f3f5;
}

.account-menu:hover .account-dropdown,
.account-menu.is-open .account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-slider,
.hero-slide {
  min-height: auto;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  aspect-ratio: 2048 / 864;
  background: #050607;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 8, 0.05) 0%, rgba(6, 7, 8, 0) 48%, rgba(6, 7, 8, 0.22) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 160px;
  padding-bottom: clamp(32px, 4.8vw, 66px);
  pointer-events: none;
}

.hero-btn {
  min-width: 150px;
  min-height: 46px;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.hero-btn:hover {
  color: #141414;
  background: #ffffff;
}

.hero-slider .splide__arrow {
  width: 60px;
  height: 60px;
  background: rgba(8, 12, 13, 0.94);
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-slider:hover .splide__arrow,
.hero-slider:focus-within .splide__arrow {
  opacity: 1;
  pointer-events: auto;
}

.hero-slider .splide__arrow svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.hero-slider .splide__arrow--prev {
  left: 18px;
}

.hero-slider .splide__arrow--next {
  right: 18px;
}

.hero-slider .splide__pagination {
  bottom: 24px;
  gap: 7px;
}

.hero-slider .splide__pagination__page {
  width: 26px;
  height: 4px;
  margin: 0;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 999px;
  opacity: 1;
  transition: width 220ms ease, background 220ms ease;
}

.hero-slider .splide__pagination__page.is-active {
  transform: scale(1);
  width: 42px;
  background: #ffffff;
}

.trust-strip {
  color: #111315;
  background: #ffffff;
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #ffffff;
}

.trust-item {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px 24px;
  text-align: center;
}

.trust-item i {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-grid;
  place-items: center;
  color: #111315;
  border: 1px solid #d9dde3;
  border-radius: 50%;
  background: transparent;
  font-size: 23px;
}

.trust-item h2 {
  margin: 0 0 5px;
  color: #111315;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.trust-item p {
  margin: 0;
  color: #747c87;
  font-size: 14px;
  line-height: 1.45;
}

.category-showcase {
  color: #111315;
  background: #ffffff;
  padding: 0 0 32px;
}

.category-showcase-head {
  margin-bottom: 24px;
  text-align: center;
}

.category-showcase-head span {
  display: block;
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.2;
}

.category-showcase-head h2 {
  max-width: 620px;
  margin: 8px auto 0;
  color: #111315;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

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

.category-card {
  position: relative;
  min-height: 430px;
  display: flex;
  overflow: hidden;
  color: #ffffff;
  border-radius: 18px;
  background: #111315;
  box-shadow: 0 10px 34px rgba(17, 19, 21, 0.08);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.62) 0%, rgba(8, 9, 10, 0.16) 48%, rgba(8, 9, 10, 0.64) 100%);
}

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

.category-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 30px;
}

.category-card-content span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.2;
}

.category-card-content h3 {
  max-width: 310px;
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.category-card-content strong {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.products-section {
  color: #111315;
  background: #ffffff;
  padding: 46px 0 86px;
}

.products-head {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.products-head span {
  width: fit-content;
  display: block;
  margin: 0 auto;
  padding: 0;
  color: #6e6e73;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.product-info span {
  display: block;
  color: #6f7782;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
}

.product-info span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #111315;
  vertical-align: 1px;
}

.products-head h2 {
  max-width: 640px;
  margin: 0 auto;
  color: #111315;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.12;
}

.products-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  color: #111315;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
}

.products-link:hover {
  color: #ffffff;
  background: #111315;
  border-color: #111315;
}

.products-footer {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #111315;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(17, 19, 21, 0.045);
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 4px;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.8;
  border-bottom: 1px solid #f2f2f2;
}

.product-image-slider,
.product-image-slider .splide__track,
.product-image-slider .splide__list,
.product-image-slider .splide__slide {
  height: 100%;
}

.product-image-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #111315;
  border: 0;
  border-radius: 50%;
  background: rgba(245, 245, 247, 0.88);
  font-size: 17px;
  backdrop-filter: blur(14px);
}

.product-zoom:hover {
  color: #ffffff;
  background: #111315;
}

.product-image-slider .splide__arrow {
  display: none;
}

.product-image-slider .splide__pagination {
  bottom: 10px;
  gap: 5px;
}

.product-image-slider .splide__pagination__page {
  width: 5px;
  height: 5px;
  margin: 0;
  background: rgba(17, 19, 21, 0.22);
  border: 0;
  border-radius: 999px;
  opacity: 1;
  transition: width 220ms ease, background 220ms ease;
}

.product-image-slider .splide__pagination__page.is-active {
  width: 17px;
  transform: scale(1);
  background: #111315;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.product-info h3 {
  min-height: 42px;
  margin: 8px 0 9px;
  color: #111315;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.product-info p {
  min-height: 38px;
  margin: 0 0 16px;
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.48;
}

.product-bottom {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f2f2f2;
}

.product-bottom strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: #111315;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.product-bottom button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 13px;
  color: #ffffff;
  border: 1px solid #111315;
  border-radius: 999px;
  background: #111315;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.product-bottom button:hover {
  color: #111315;
  background: #ffffff;
  border-color: #111315;
}

.drive-video-section {
  color: #111315;
  background: #ffffff;
  padding: 42px 0 86px;
}

.drive-video-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.drive-video-head h2 {
  margin: 0 0 12px;
  color: #111315;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.12;
}

.drive-video-head p {
  max-width: 680px;
  margin: 0 auto;
  color: #747c87;
  font-size: 15px;
  line-height: 1.65;
}

.drive-video-slider {
  padding-bottom: 38px;
}

.drive-video-slider .splide__track {
  overflow: hidden;
}

.drive-video-slider .splide__slide {
  min-width: 0;
}

.drive-video-card {
  position: relative;
  min-width: 0;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.62 / 1;
  color: #ffffff;
  border-radius: 14px;
  background: #111315;
  box-shadow: 0 16px 44px rgba(17, 19, 21, 0.08);
  isolation: isolate;
}

.drive-video-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 460ms ease, filter 460ms ease;
}

.drive-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.16) 0%, rgba(8, 9, 10, 0.12) 42%, rgba(8, 9, 10, 0.72) 100%);
  pointer-events: none;
}

.drive-video-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.drive-video-play {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 9, 10, 0.34);
  backdrop-filter: blur(18px);
}

.drive-video-play {
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 34px;
  transform: translate(-50%, -50%);
  transition: background 220ms ease, transform 220ms ease;
}

.drive-video-play i {
  margin-left: 4px;
}

.drive-video-card:hover .drive-video-play {
  background: rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) scale(1.04);
}

.drive-video-content {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
}

.drive-video-content span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
}

.drive-video-content h3 {
  max-width: 310px;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.drive-video-slider .splide__arrow {
  width: 44px;
  height: 44px;
  background: #111315;
  border-radius: 50%;
  opacity: 1;
}

.drive-video-slider .splide__arrow svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.drive-video-slider .splide__arrow--prev {
  left: 12px;
}

.drive-video-slider .splide__arrow--next {
  right: 12px;
}

.drive-video-slider .splide__pagination {
  bottom: 0;
  gap: 6px;
}

.drive-video-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  margin: 0;
  background: rgba(17, 19, 21, 0.2);
  border-radius: 999px;
  opacity: 1;
  transition: width 220ms ease, background 220ms ease;
}

.drive-video-slider .splide__pagination__page.is-active {
  width: 22px;
  transform: scale(1);
  background: #111315;
}

.brand-marquee-section {
  overflow: hidden;
  color: #111315;
  background: #ffffff;
  padding: 0 0 70px;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
}

.brand-slider::before,
.brand-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider .splide__track {
  overflow: hidden;
}

.brand-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 180px;
  height: 96px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.brand-logo img {
  width: 150px;
  height: 74px;
  display: block;
  object-fit: contain;
}

.brand-logo:hover {
  opacity: 0.9;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.contact-section {
  color: #111315;
  background: #ffffff;
  padding: 18px 0 92px;
}

.contact-panel {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 4.8vw, 72px);
  align-items: stretch;
}

.contact-copy {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 34px;
}

.contact-copy > span {
  display: block;
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.2;
}

.contact-copy > div > span {
  display: block;
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.2;
}

.contact-copy h2 {
  max-width: 540px;
  margin: 10px 0 0;
  color: #111315;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.04;
}

.contact-copy p {
  max-width: 320px;
  margin: 0;
  color: #747c87;
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}

.contact-lines {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-lines a {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #404751;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  backdrop-filter: none;
}

.contact-lines i {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: #111315;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 0;
  background: transparent;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-form label span {
  color: #59616b;
  font-size: 13px;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  color: #111315;
  border: 0;
  border-bottom: 1px solid #dfe2e6;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color 180ms ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a1a7af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111315;
  box-shadow: none;
}

.contact-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 12px 24px;
  color: #ffffff;
  border: 1px solid #111315;
  border-radius: 999px;
  background: #111315;
  font-size: 14px;
  font-weight: 400;
}

.contact-form button:hover {
  color: #111315;
  background: #ffffff;
}

.contact-side {
  position: relative;
  min-width: 0;
  padding: 0;
}

.contact-map {
  overflow: hidden;
  height: 100%;
  min-height: 430px;
  border-radius: 12px;
  background: #e8eaed;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.03);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 42%),
    #070809;
  padding: 44px 0 30px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-visual {
  position: relative;
  width: min(1376px, calc(100% - 48px));
  min-height: 386px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: #111315;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.footer-visual picture,
.footer-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.footer-visual img {
  object-fit: cover;
  object-position: center right;
}

.footer-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.58) 38%, rgba(5, 6, 7, 0.08) 78%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), rgba(5, 6, 7, 0.58));
}

.footer-visual-content {
  position: relative;
  z-index: 1;
  padding-top: 66px;
  padding-bottom: 66px;
}

.footer-visual-content h2 {
  max-width: 620px;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.footer-visual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-visual-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  color: #070809;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-visual-actions a + a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.footer-visual-actions a:hover {
  color: #ffffff;
  background: transparent;
  transform: translateY(-2px);
}

.footer-visual-actions a + a:hover {
  color: #070809;
  background: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 110px);
  padding-top: 70px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 156px;
  max-height: 46px;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 17px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  color: #070809;
  border-color: #ffffff;
  background: #ffffff;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
}

.footer-links h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.footer-links a,
.footer-links span {
  display: block;
  max-width: 300px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-links a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: #ffffff;
}

.developer-bar {
  display: flex;
  justify-content: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.46);
  background: #050607;
}

.developer-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 180ms ease;
}

.developer-bar img {
  width: 138px;
  max-height: 28px;
  display: block;
  object-fit: contain;
}

.developer-bar a:hover {
  opacity: 1;
}

.product-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 0;
  color: #111315;
}

.product-modal-gallery {
  min-width: 0;
  padding: 0;
  background: #f6f6f7;
}

.product-modal-main-image {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  display: block;
  object-fit: cover;
}

.product-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e7e8eb;
}

.product-modal-thumb {
  height: 112px;
  padding: 0;
  border: 0;
  background: #ffffff;
  opacity: 0.58;
  transition: opacity 180ms ease;
}

.product-modal-thumb.is-active {
  opacity: 1;
}

.product-modal-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-modal-info {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
}

.product-modal-info span {
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.2;
}

.product-modal-info h2 {
  margin: 12px 0 14px;
  color: #111315;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.05;
}

.product-modal-info p {
  margin: 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.55;
}

.product-modal-info ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.product-modal-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2f3338;
  font-size: 14px;
}

.product-modal-info li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #111315;
}

.product-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid #eeeef0;
}

.product-modal-actions strong {
  color: #111315;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.product-modal-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  color: #ffffff;
  border: 1px solid #111315;
  border-radius: 999px;
  background: #111315;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.product-modal-actions button:hover {
  color: #111315;
  background: #ffffff;
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #111315;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  backdrop-filter: blur(12px);
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: relative;
    inset: auto;
    padding: 0;
  }

  .site-header.header-solid {
    position: relative;
  }

  .main-nav {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 58px;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: #07080a;
    box-shadow: none;
    backdrop-filter: blur(24px) saturate(150%);
  }

  .site-header.header-solid .main-nav {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    background: #07080a;
  }

  .main-nav .container {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 58px;
    display: grid;
    grid-template-columns: 72px 1fr 72px;
    align-items: center;
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar-brand img {
    width: 112px;
  }

  .navbar-brand {
    justify-self: center;
    margin: 0;
  }

  .navbar-toggler {
    width: 30px;
    height: 40px;
    justify-self: start;
    margin: 0;
    padding: 0;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 27px;
    box-shadow: none !important;
    outline: 0;
  }

  .navbar-toggler[aria-expanded="true"] {
    color: #ffffff;
    background: transparent;
    box-shadow: none !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler:focus-visible {
    border: 0;
    box-shadow: none !important;
    outline: 0;
  }

  .navbar-collapse {
    display: none !important;
  }

  .mobile-header-actions {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 8px;
  }

  .icon-btn {
    width: 28px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: 19px;
  }

  .icon-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
  }

  .cart-btn span {
    top: 0;
    right: -2px;
    min-width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, background 220ms ease;
  }

  .mobile-menu {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: block;
    max-height: min(82vh, 660px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 18px 22px;
    color: #111315;
    border-radius: 28px 28px 0 0;
    background: #ffffff;
    box-shadow: 0 -26px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(104%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c9cdd3 transparent;
  }

  .mobile-menu::-webkit-scrollbar {
    width: 4px;
  }

  .mobile-menu::-webkit-scrollbar-thumb {
    background: #c9cdd3;
    border-radius: 999px;
  }

  .mobile-menu-handle {
    width: 42px;
    height: 4px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: #d7d9dd;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #eceef1;
  }

  .mobile-menu-head img {
    width: 116px;
    max-height: 36px;
    object-fit: contain;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: #111315;
    border: 1px solid #e6e8eb;
    border-radius: 50%;
    background: #f7f8fa;
    font-size: 22px;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 2px;
    padding: 14px 0;
  }

  .mobile-menu-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
    color: #111315;
    border-bottom: 1px solid #f0f1f3;
    font-size: 18px;
    font-weight: 400;
  }

  .mobile-menu-nav a::after {
    content: "\ea6e";
    font-family: remixicon;
    color: #9da3ad;
    font-size: 20px;
  }

  .mobile-menu-nav a.active {
    color: #000000;
  }

  .mobile-menu-auth {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px 14px;
    color: #ffffff;
    border-radius: 16px;
    background: #111315;
    font-size: 15px;
    font-weight: 400;
  }

  .mobile-menu-auth i {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: #111315;
    border-radius: 50%;
    background: #ffffff;
    font-size: 17px;
  }

  .mobile-menu-contact {
    display: grid;
    gap: 8px;
    margin-top: 4px;
    padding: 12px;
    border: 1px solid #eceef1;
    border-radius: 16px;
    background: #f7f8fa;
  }

  .mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2b2f36;
    font-size: 14px;
  }

  .mobile-menu-contact i {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #111315;
    font-size: 15px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu-backdrop {
    background: rgba(0, 0, 0, 0.42);
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu {
    transform: translateY(0);
  }

  .hero-slider,
  .hero-slide {
    min-height: auto;
  }

  .hero-bg {
    object-position: center;
  }

  .hero-content {
    padding-top: 205px;
    padding-bottom: 78px;
  }

  .hero-btn {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-slider .splide__arrow {
    width: 46px;
    height: 46px;
  }

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

  .trust-item {
    border: 0;
  }

  .category-showcase {
    padding: 0 0 26px;
  }

  .category-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .products-section {
    padding: 34px 0 58px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .drive-video-section {
    padding: 32px 0 58px;
  }

  .drive-video-card {
    aspect-ratio: 1.74 / 1;
  }

  .drive-video-slider .splide__track {
    overflow: hidden;
  }

  .drive-video-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }

  .drive-video-slider .splide__arrow--prev {
    left: 10px;
  }

  .drive-video-slider .splide__arrow--next {
    right: 10px;
  }

  .contact-section {
    padding: 8px 0 58px;
  }

  .brand-marquee-section {
    padding: 0 0 48px;
  }

  .brand-slider::before,
  .brand-slider::after {
    width: 62px;
  }

  .brand-logo {
    width: 132px;
    height: 74px;
  }

  .brand-logo img {
    width: 108px;
    height: 56px;
  }

  .contact-panel {
    border-radius: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-copy {
    align-items: flex-start;
    padding: 0 0 6px;
  }

  .contact-copy p {
    text-align: left;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }

  .site-footer {
    padding: 30px 0 24px;
  }

  .footer-visual {
    width: min(100% - 32px, 860px);
    min-height: 310px;
    border-radius: 24px;
  }

  .footer-visual-content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 46px;
    padding-bottom: 36px;
  }

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

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

  .product-modal-info {
    padding: 28px;
  }

}

@media (max-width: 575.98px) {
  .hero-slider,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    aspect-ratio: 1080 / 1350;
  }

  .hero-bg {
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 7, 8, 0.08) 0%, rgba(6, 7, 8, 0) 44%, rgba(6, 7, 8, 0.28) 100%);
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero-slider .splide__arrow {
    top: auto;
    bottom: 24px;
  }

  .hero-slider .splide__arrow--prev {
    left: 16px;
  }

  .hero-slider .splide__arrow--next {
    right: 16px;
  }

  .trust-strip {
    padding: 24px 0;
  }

  .trust-grid {
    border-radius: 0;
  }

  .trust-item {
    min-height: 104px;
    padding: 22px 18px;
  }

  .trust-item h2 {
    font-size: 17px;
  }

  .trust-item p {
    font-size: 13px;
  }

  .category-showcase-head {
    text-align: left;
  }

  .category-showcase-head h2 {
    margin-left: 0;
    font-size: 26px;
  }

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

  .category-card-content {
    padding: 24px;
  }

  .category-card-content h3 {
    font-size: 25px;
  }

  .products-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
  }

  .products-head h2 {
    margin-right: 0;
    margin-left: 0;
    font-size: 26px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-media {
    aspect-ratio: 1 / 0.86;
  }

  .product-info h3,
  .product-info p {
    min-height: 0;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-bottom button {
    width: 100%;
  }

  .drive-video-head {
    margin-bottom: 22px;
    text-align: left;
  }

  .drive-video-head h2 {
    font-size: 26px;
  }

  .drive-video-head p {
    margin-left: 0;
    font-size: 14px;
  }

  .drive-video-card {
    aspect-ratio: 1.28 / 1;
    border-radius: 12px;
  }

  .drive-video-play {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .drive-video-content {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .drive-video-content h3 {
    font-size: 18px;
  }

  .contact-panel {
    border-radius: 0;
  }

  .contact-copy,
  .contact-form {
    padding: 0;
  }

  .contact-copy h2 {
    font-size: 28px;
  }

  .contact-copy p,
  .contact-lines a {
    font-size: 14px;
  }

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

  .contact-form button {
    width: 100%;
  }

  .contact-side {
    padding: 0;
  }

  .contact-lines {
    position: static;
    display: grid;
    padding: 0;
    margin-bottom: 14px;
  }

  .contact-lines a {
    color: #25292e;
    background: transparent;
    padding: 0;
  }

  .contact-lines i {
    color: #111315;
  }

  .contact-map {
    border-radius: 10px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    margin-bottom: 22px;
  }

  .footer-visual {
    min-height: 330px;
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .footer-visual-content h2 {
    font-size: 30px;
  }

  .footer-visual-actions {
    flex-direction: column;
    max-width: 240px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-modal-thumbs {
    display: none;
  }

  .product-modal-info h2 {
    font-size: 28px;
  }

  .product-modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-modal-actions button {
    width: 100%;
  }

}
