/* =========================
   Fonts: Google Sans (local)
========================= */

@font-face{
  font-family: "Google Sans";
  src: url("../fonts/google-sans/GoogleSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Google Sans";
  src: url("../fonts/google-sans/GoogleSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Google Sans";
  src: url("../fonts/google-sans/GoogleSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Google Sans";
  src: url("../fonts/google-sans/GoogleSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --font-main: "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  width: 100%;
  overflow-x: hidden;
  background: #050607;
}

body {
  margin: 0;
  min-width: 320px;
  background: #050607;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 400;
}


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

.container,
.al3-container {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}



/* =========================
   Header
========================= */

.al3-header {
  position: relative;
  z-index: 1500;
  padding: 0 0 15px;
  background: #050607;
}

.al3-header-sticky {
  position: relative;
  z-index: 1550;
  padding: 12px 0 18px;
  background: #050607;
  transition: box-shadow .2s ease, background .2s ease, padding .2s ease;
}

.al3-header-sticky.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 12px 0;
  background: #050607;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.al3-header-sticky-spacer {
  display: none;
  height: 0;
}

/* =========================
   Top cart bar
========================= */

.al3-header-cartbar {
  padding-top: 30px;
  margin-bottom: 18px;
}

.al3-header-cartbar__inner {
  width: 100%;
  height: 52px;
  padding: 0 27px;
  border-radius: 8px;
  background: #0C0E0F;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.al3-cart-link {
  position: relative;
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  flex: 0 0 auto;
}

.al3-cart-link__icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.al3-cart-link__count {
  position: absolute;
  top: 4px;
  right: -2px;

  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;

  background: #DF141B;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* =========================
   Main header grid
========================= */

.al3-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 18px;
  align-items: center;
}

/* Logo spans actions + menu rows */
.al3-header__logo {
  grid-column: 1;
  grid-row: 1 / 3;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: center;

  max-width: 420px;
  text-decoration: none;
}

.al3-header__logo img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 77px;
  object-fit: contain;
}

/* Desktop actions */

.al3-header__actions {
  grid-column: 2;
  grid-row: 1;

  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

/* Desktop menu */

.al3-header__bottom {
  grid-column: 2;
  grid-row: 2;

  min-width: 0;
  margin: 0;
}

.al3-header__nav {
  width: 100%;
}

.al3-header__menu {
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;

  margin: 0;
  padding: 0;
}

.al3-header__menu a {
  text-decoration: none;
  text-transform: uppercase;

  color: #fff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.0225em;

  transition: color .2s ease;
}

.al3-header__menu a:hover,
.al3-header__menu .current-menu-item > a,
.al3-header__menu .current_page_item > a,
.al3-header__menu .current-menu-ancestor > a {
  color: #DF141B;
}

/* =========================
   Header buttons
========================= */

.al3-header-tab,
.al3-header-login {
  height: 40px;
  padding: 0 26px;
  border-radius: 8px;
  border: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;
  transition: opacity .2s ease, transform .15s ease;
}

.al3-header-tab:hover,
.al3-header-login:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.al3-header-tab--gray {
  background: #0C0E0F;
  color: #fff;
}

.al3-header-tab--dark {
  background: #fff;
  color: #181818;
}

.al3-header-login {
  min-width: 120px;
  background: #DF141B;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
}

/* =========================
   Desktop submenu
========================= */

.al3-header__menu > li {
  position: relative;
}

.al3-header__menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.al3-header__menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  background: transparent;
}

.al3-header__menu > li.menu-item-has-children > a::after {
  content: "";
  width: 10px;
  height: 6px;
  display: inline-block;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23FFFFFF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px 6px;

  opacity: .75;
  transition: transform .18s ease, opacity .18s ease;
}

.al3-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;

  width: max-content;
  max-width: min(320px, 90vw);

  margin: 0;
  padding: 8px;
  list-style: none;

  background: #0C0E0F;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;

  z-index: 100;
  pointer-events: none;
}

.al3-header__menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;

  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;

  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.al3-header__menu .sub-menu a:hover {
  background: rgba(255,255,255,.06);
  color: #DF141B;
}

.al3-header__menu > li.menu-item-has-children:hover > .sub-menu,
.al3-header__menu > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.al3-header__menu > li.menu-item-has-children:hover > a::after,
.al3-header__menu > li.menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* =========================
   Burger
========================= */

.al3-header__burger {
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: center;

  display: none;

  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;

  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1700;
  flex: 0 0 auto;
}

.al3-header__burger span {
  position: absolute;
  left: 10px;
  right: 10px;

  height: 2px !important;
  border-radius: 2px;

  background: #fff !important;
  display: block !important;
  opacity: 1 !important;
  pointer-events: none;
}

.al3-header__burger span:nth-child(1) {
  top: 14px;
}

.al3-header__burger span:nth-child(2) {
  top: 21px;
}

.al3-header__burger span:nth-child(3) {
  top: 28px;
}

/* =========================
   Mobile overlay
========================= */

.al3-mobile-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,.64);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: .2s ease;
  z-index: 2100;
}

/* =========================
   Mobile drawer - dark
========================= */

.al3-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;

  width: min(360px, 88vw);
  height: 100vh;

  background: #050607;
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -20px 0 60px rgba(0,0,0,.45);

  transform: translateX(110%);
  transition: .25s ease;

  z-index: 2200;

  display: flex;
  flex-direction: column;
}

.al3-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.al3-mobile-menu__title {
  color: #fff;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.al3-mobile-menu__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;

  background: #0C0E0F;
  color: #fff;

  cursor: pointer;
  font-size: 20px;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.al3-mobile-menu__body {
  padding: 16px 18px 22px;
  overflow: auto;
}

.al3-mobile-menu__list {
  list-style: none;

  margin: 0;
  padding: 0;

  display: grid;
  gap: 10px;
}

.al3-mobile-menu__list a {
  display: block;

  padding: 12px;
  border-radius: 8px;

  text-decoration: none;
  text-transform: uppercase;

  color: #fff;
  background: #0C0E0F;

  font-size: 14px;
  font-weight: 800;

  transition: background .2s ease, color .2s ease;
}

.al3-mobile-menu__list a:hover,
.al3-mobile-menu__list .current-menu-item > a,
.al3-mobile-menu__list .current_page_item > a,
.al3-mobile-menu__list .current-menu-ancestor > a {
  color: #DF141B;
  background: rgba(255,255,255,.06);
}

/* =========================
   Mobile actions
========================= */

.al3-mobile-menu__actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);

  display: grid;
  gap: 10px;
}

.al3-mobile-action {
  width: 100%;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;
  white-space: nowrap;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.0156em;

  font-size: 14px;
  font-weight: 800;

  transition: opacity .2s ease, transform .15s ease;
}

.al3-mobile-action:hover {
  opacity: .92;
}

.al3-mobile-action:active {
  transform: translateY(1px);
}

.al3-mobile-action--dark {
  background: #fff;
  color: #181818;
}

.al3-mobile-action--gray {
  background: #0C0E0F;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
}

.al3-mobile-action--accent {
  background: #DF141B;
  color: #fff;
}

/* =========================
   Mobile open state
========================= */

body.al3-menu-open .al3-mobile-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

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

/* =========================
   Mobile submenu
========================= */

.al3-mobile-menu__list .menu-item-has-children > a {
  position: relative;
  padding-right: 42px;
}

.al3-mobile-menu__list .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;

  width: 12px;
  height: 8px;

  transform: translateY(-50%);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23FFFFFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px 8px;

  opacity: .75;
  transition: transform .18s ease;
}

.al3-mobile-menu__list .sub-menu {
  list-style: none;

  margin: 6px 0 0;
  padding: 0 0 0 14px;

  display: none;
  gap: 8px;
}

.al3-mobile-menu__list li.is-sub-open > .sub-menu {
  display: grid;
}

.al3-mobile-menu__list li.is-sub-open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.al3-mobile-menu__list .sub-menu a {
  display: block;

  padding: 10px 12px;
  border-radius: 8px;

  text-transform: uppercase;

  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.04);

  font-size: 13px;
  font-weight: 800;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
  .al3-header__main {
    column-gap: 28px;
  }

  .al3-header__logo {
    max-width: 360px;
  }

  .al3-header__logo img {
    max-height: 77px;
  }

  .al3-header-tab,
  .al3-header-login {
    padding: 0 22px;
  }

  .al3-header__menu {
    gap: 16px;
  }

  .al3-header__menu a {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .al3-header {
    padding-bottom: 14px;
  }

  .al3-header-sticky {
    padding: 0 0 12px;
  }
  
  .al3-header-sticky.is-stuck {
  padding: 10px 0;
	}	

  .al3-header__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-rows: auto;
    column-gap: 16px;
    align-items: center;
  }

  .al3-header__logo {
    grid-column: 1;
    grid-row: 1;
    max-width: 280px;
  }

  .al3-header__logo img {
    max-height: 72px;
  }

  .al3-header__actions,
  .al3-header__bottom {
    display: none;
  }

  .al3-header__burger {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .al3-header-cartbar {
    padding-top: 14px;
    margin-bottom: 18px;
  }

  .al3-header-cartbar__inner {
    height: 48px;
    padding: 0;
  }
}

@media (max-width: 575px) {
  .al3-container {
    width: 100%;
    max-width: 1110px;
  }

  .al3-header__logo {
    max-width: 235px;
  }

  .al3-header__logo img {
    max-height: 60px;
  }

  .al3-header-cartbar {
    padding-top: 12px;
    margin-bottom: 14px;
  }

  .al3-header-cartbar__inner {
    height: 44px;
    border-radius: 7px;
    padding: 0;
  }

  .al3-cart-link {
    width: 38px;
    height: 38px;
  }

  .al3-cart-link__icon {
    width: 24px;
    height: 24px;
  }

  .al3-mobile-menu {
    width: min(340px, 90vw);
  }
}




/* =========================
   Footer
========================= */

.al3-footer {
  background: #050607;
  padding: 90px 0 28px;
}

.al3-footer__line {
  width: 100%;
  height: 1px;
  background: #1B1B1B;
}

.al3-footer__row {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.al3-footer__copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.0391em;
  color: #FFFFFF;
  text-align: center;
}

/* mobile */
@media (max-width: 768px) {
  .al3-footer {
    padding: 60px 0 28px;
  }

  .al3-footer__row {
    flex-direction: column;
  }
}



/* =========================
   404 Page
========================= */

.al3-error-page {
  background: #050607;
}

.al3-error-hero__banner {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;

  background:
    radial-gradient(circle at 50% 35%, rgba(223, 20, 27, .22) 0%, rgba(223, 20, 27, 0) 34%),
    linear-gradient(135deg, #111315 0%, #050607 100%);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.al3-error-hero__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .22;
}

.al3-error-hero__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.22);
}

.al3-error-hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 60px 24px;
}

.al3-error-hero__code {
  margin-bottom: 16px;

  color: #DF141B;
  font-size: clamp(82px, 14vw, 170px);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -0.06em;
}

.al3-error-hero__title {
  margin: 0;

  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.0293em;
}

.al3-error-hero__text {
  max-width: 520px;
  margin: 18px auto 0;

  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.6;
}

.al3-error-hero__btn {
  margin-top: 32px;
  min-width: 180px;
  height: 50px;
  padding: 0 28px;
  border-radius: 8px;

  background: #DF141B;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.0156em;

  transition: opacity .2s ease, transform .15s ease;
}

.al3-error-hero__btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.al3-error-hero__btn:active {
  transform: translateY(1px);
}

/* mobile */
@media (max-width: 768px) {

  .al3-error-hero__banner {
    min-height: 420px;
    border-radius: 16px;
  }

  .al3-error-hero__title {
    font-size: 28px;
    line-height: 32px;
  }

  .al3-error-hero__text {
    font-size: 15px;
  }

  .al3-error-hero__btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .al3-error-hero__banner {
    min-height: 380px;
  }

  .al3-error-hero__content {
    padding: 44px 20px;
  }
}



/* =========================
   Modal: Dealer Login
========================= */

body.al3-modal-open {
  overflow: hidden;
}

.al3-login-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.al3-login-modal.is-open {
  display: block;
}

.al3-login-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

.al3-login-modal__panel {
  position: relative;
  width: min(630px, calc(100% - 40px));
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #0C0E0F;
  border-radius: 22px;
  padding: 70px 95px 60px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.al3-login-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  border-radius: 10px;
}

.al3-login-modal__title {
  margin: 0;
  padding-bottom: 62px;

  text-align: center;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.0332em;
}

.al3-login-form {
  width: 100%;
}

.al3-login-fields {
  width: 100%;
}

.al3-login-field {
  display: block;
  margin: 0;
}

.al3-login-field + .al3-login-field {
  margin-top: 29px;
}

.al3-login-field__label {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.0625em;
}

.al3-login-field__input {
  width: 100%;
  height: 44px;
  border: 1px solid #1B1B1B;
  border-radius: 6px;
  padding: 0 14px;
  background: #181818;
  color: #fff;
  font-size: 16px;
  outline: none;
  display: block;
}

.al3-login-field__input:focus {
  border-color: rgba(223,20,27,.65);
  box-shadow: 0 0 0 3px rgba(223,20,27,.12);
}

.al3-login-bottom {
  margin-top: 30px;
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.al3-login-links__top {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.0234em;
  text-transform: uppercase;
}

.al3-login-links__reg {
  display: inline-block;
  margin-top: 2px;

  color: #DF141B;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.0234em;
  text-transform: uppercase;
  text-decoration: none;
}

.al3-login-links__reg:hover {
  text-decoration: underline;
}

.al3-login-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.al3-login-msg {
  min-height: 18px;

  color: #DF141B;
  font-size: 13px;
  line-height: 18px;
  text-align: right;
}

.al3-login-btn {
  width: 100%;
  height: 44px;

  border: 0;
  border-radius: 8px;

  background: #DF141B;
  color: #fff;

  cursor: pointer;

  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.0156em;
  text-transform: uppercase;

  display: block;
}

.al3-login-btn.is-loading {
  opacity: .75;
  pointer-events: none;
}

.al3-login-btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;

  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;

  display: inline-block;
  margin-left: 10px;
  vertical-align: -2px;

  animation: al3-login-spin .8s linear infinite;
}

@keyframes al3-login-spin {
  to {
    transform: rotate(360deg);
  }
}

/* mobile */
@media (max-width: 768px) {
  .al3-login-modal__panel {
    width: min(100% - 40px, 630px);
    padding: 36px 20px 24px;
  }

  .al3-login-modal__title {
    font-size: 28px;
    line-height: 28px;
    padding-bottom: 28px;
  }

  .al3-login-bottom {
    grid-template-columns: 1fr;
  }

  .al3-login-actions {
    align-items: stretch;
  }

  .al3-login-msg {
    text-align: left;
  }
}