:root {
  --font-family: "Poppins", sans-serif;
}

html,
body {
  font-family: var(--font-family);
}

body,
p,
li,
a,
button,
input,
select,
textarea,
option,
label,
legend,
small,
strong,
em,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}

.terms,
.terms ol,
.terms ol li,
.terms p,
div.text p,
div.text li {
  font-family: var(--font-family);
}

button {
  cursor: pointer;
}
header {
  height: auto;
}
ul.cc-nav__list li a {
  padding: 0;
  border: none;
  align-content: center;
}
ul.cc-nav__list li {
  height: auto;
}
ul.cc-nav__list {
  border: none;
}
/* Carconnex new header */
.cc-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1050;
  background: transparent;
  border-bottom: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cc-header.cc-header--scrolled {
  background: #ffffff;
  border-bottom: 1px solid #e8edf2;
  box-shadow: 0 2px 10px rgba(21, 32, 51, 0.06);
}

.cc-header--scrolled .cc-nav__list a {
  color: #627690;
}
.cc-header--scrolled .cc-burger span {
  background: #627690;
}

.cc-header .cc-logo-color {
  display: none;
}

.cc-header--scrolled .cc-logo-color {
  display: block;
}
.cc-header--scrolled .cc-logo-white {
  display: none;
}
.cc-header .cc-container {
  width: auto;
  padding: 14px 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
/* Favorite icon on product card */
.product__card-overlay .favorite {
  position: absolute;
  z-index: 990;
  top: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e8edf2;
  box-shadow: 0 2px 10px rgba(21, 32, 51, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.product__card-overlay .favorite:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(21, 32, 51, 0.1);
}
.product__card-overlay .favorite svg {
  width: 22px;
  height: 22px;
  color: #e04654;
}
@media (hover: none) {
  .product__card-overlay .favorite:hover {
    transform: none;
  }
}
.cc-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cc-logo img {
  height: 28px;
  width: 10em;
  display: block;
}
.cc-actions {
  display: flex;
  gap: 12px;
}
.cc-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  text-underline-offset: 3px;
}
.cc-btn--primary {
  background: #1aa7ff;
  color: #fff;
}
.cc-btn--primary:hover {
  background: #0b8bd4;
  color: #fff;
}
.cc-btn--secondary {
  background: #e9f6ff;
  color: #1aa7ff;
}
.cc-btn--secondary:hover {
  background: #d1e6ff;
  color: #1aa7ff;
}
.cc-btn--account {
  background: #ffffff;
  border: 1px solid #d1dbe6;
  color: #1a2b4b;
  border-radius: 20px;
  padding: 8px 14px;
}
.cc-nav {
  margin-left: 24px;
}
.cc-nav__list {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.cc-nav__list a {
  font-family: "Raleway", Helvetica, sans-serif;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.cc-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cc-account-link {
  font-family: "Raleway", Helvetica, sans-serif;
  color: #152033;
  text-decoration: none;
}

.cc-lang {
  position: relative;
}
.cc-lang__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
}
.cc-lang__list {
  position: absolute;
  right: 0;
  top: 36px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 6px;
  display: none;
  min-width: 160px;
  z-index: 1000;
}
.cc-lang__list li:hover {
  background: #f5f5f5;
}
.cc-lang__list li .active {
  background: #f5f5f5;
}

.cc-lang__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: var(--font-family);
  font-size: 12px;
  color: #152033;
  text-decoration: none;
}
.cc-lang.open .cc-lang__list {
  display: block;
}

.cc-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 20px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
.cc-burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}
.cc-burger span:nth-child(1) {
  top: 0;
}
.cc-burger span:nth-child(2) {
  top: 7px;
}
.cc-burger span:nth-child(3) {
  bottom: 0;
}

@media (max-width: 1024px) {
  .cc-header .cc-container {
    width: auto;
    padding: 14px 16px;
  }
  .cc-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    border-top: 1px solid #e8edf2;
    display: none;
  }
  .cc-nav.open {
    display: block;
  }
  .cc-nav__list {
    flex-direction: column;
    padding: 8px 16px;
  }
  .cc-actions {
    display: none;
  }
  .cc-nav__list a {
    padding: 14px 0;
    border-bottom: 1px solid #eef3f7;
  }
  .cc-burger {
    display: inline-block;
  }
  .cc-left {
    gap: 12px;
  }
  .cc-right {
    gap: 8px;
  }
  .cc-btn-pc {
    display: none;
  }
}

/* Mobile drawer */
.cc-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
}
.cc-mobile.open {
  pointer-events: auto;
}
.cc-mobile__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.cc-mobile.open .cc-mobile__overlay {
  opacity: 1;
}
.cc-mobile__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  z-index: 1;
}
.cc-mobile.open .cc-mobile__panel {
  transform: translateX(0);
  opacity: 1;
}
.cc-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 4px;
}
.cc-mobile__user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cc-mobile__avatar {
  height: 48px;
  width: 48px;
  border-radius: 24px;
  background: #e8edf2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #4a5b74;
}
.cc-mobile__name {
  font-family: var(--font-family);
  font-size: 18px;
  color: #4a5b74;
}
.cc-mobile__close {
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: #4a5b74;
}
.cc-mobile__menu {
  padding: 10px 20px;
}
.cc-mobile__menu li {
  list-style: none;
  margin: 18px 0;
}
.cc-mobile__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #4a5b74;
  text-decoration: none;
}
.cc-mobile__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 0 20px;
}
.cc-mobile__actions .cc-btn {
  flex: 1;
  text-align: center;
}

.cc-mobile__filter #mobileFiltersContainer {
  display: flex;
  flex-direction: column;
}

/* Push page down to avoid overlap with fixed header */
@media (prefers-reduced-motion: reduce) {
  .cc-mobile__overlay,
  .cc-mobile__panel {
    transition: none;
  }
}

.main-intro {
  font-family: var(--font-family);
  box-sizing: border-box;
}

.main-intro img,
.main-intro svg {
  max-width: 100%;
}

.main-intro {
  overflow: hidden;
  position: relative;
  color: #fff;
  font-size: 1.2rem;
}

@media only screen and (min-width: 1025px) and (max-height: 700px) {
  .main-intro {
    padding-bottom: 92vh;
  }
}

@media only screen and (min-width: 1025px) and (max-height: 600px) {
  .main-intro {
    padding-bottom: 90vh;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .main-intro {
    padding-bottom: 70%;
  }
}

@media only screen and (max-width: 767px) {
  .main-intro {
    height: 100vh;
  }
}

@media only screen and (min-width: 992px) {
  .main-intro {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .main-intro {
    min-height: min(52vw, 90vh);
  }
}

@media (max-width: 768px) {
  .main-intro {
    height: 40vh;
  }
}

@media only screen and (min-width: 1025px) and (max-height: 700px) {
  .main-intro.main-intro--trim-100 {
    padding-bottom: calc(92vh - 100px);
  }
}

@media only screen and (min-width: 1025px) and (max-height: 600px) {
  .main-intro.main-intro--trim-100 {
    padding-bottom: calc(90vh - 100px);
  }
}

@media (min-width: 768px) {
  .main-intro.main-intro--trim-100 {
    min-height: calc(min(52vw, 90vh) - 100px);
  }
}

@media (max-width: 768px) {
  .main-intro.main-intro--trim-100 {
    height: calc(40vh - 100px);
    min-height: 240px;
  }
}

.swiper-container-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.main-intro-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-intro-slider img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .main-intro-slider:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #283747;
    opacity: 0.3;
  }
}

@media only screen and (min-width: 1025px) and (max-height: 700px) {
  .main-intro-slider img {
    -o-object-position: 0 40%;
    object-position: 0 40%;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .main-intro-slider img {
    -o-object-position: center;
    object-position: center;
  }
}

.main-intro__content {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1201px) {
  .main-intro__content {
    right: 50vw;
  }
}

@media (max-width: 768px) {
  .main-intro__content {
    top: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .main-intro__content {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.85em;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .main-intro__content {
    right: auto;
    left: 15px;
  }
}

.main-intro__label {
  font-size: 1em;
  line-height: 1.25;
}

@media only screen and (min-width: 768px) {
  .main-intro__label {
    margin-bottom: 1.3em;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .main-intro__label {
    margin-bottom: 1em;
    text-align: center;
  }
}

.home-title,
.main-intro__logo,
.main-intro__logo-text,
.noUi-tooltip,
.noUi-value,
.swiper-pagination,
.swiper-zoom-container,
.text-center {
  text-align: center;
}

.main-intro__logo img {
  vertical-align: middle;
  width: 100vw;
}

@media only screen and (min-width: 768px) {
  .main-intro__logo img {
    width: 38.59vw;
  }
}

@media only screen and (min-width: 768px) {
  .main-intro__logo {
    text-align: left;
  }
}

.main-intro__logo-text {
  margin-top: 0.3em;
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media only screen and (min-width: 768px) {
  .main-intro__logo-text {
    font-size: 1.67em;
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .main-intro__logo-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-top: 0.5em;
  }
}

.main-intro__logo-text__line {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.48em 0 0;
  width: 13vw;
  height: 1px;
  background: #fff;
}

@media only screen and (min-width: 768px) {
  .main-intro__logo-text__line {
    margin: 0 1em 0 0;
    width: 12vw;
  }
}

@media only screen and (max-width: 767px) {
  .main-intro__logo-text__line {
    width: 100%;
  }
}

.form .avatar__container,
.main-filter {
  font-family: var(--font-family);
  box-shadow: 0 32px 48px rgba(40, 55, 71, 0.1);
}

.form__btn,
.main-filter__select {
  margin-top: 20px;
}

.main-filter {
  --filterFz: 1rem;
  margin: -6.4em 0 -14.6666666667em;
  padding: 1.2em 1em 1em;
  position: relative;
  z-index: 10;
  border-radius: 0.2666666667rem;
  background: #fff;
  color: #283747;
}

.main-filter__type {
  border-bottom: 1px solid #627690;
  padding-bottom: 20px;
}

.home-title--without-mb,
.main-filter .select {
  margin-bottom: 0;
}

.main-filter__submit {
  margin-top: 20px;
  -ms-grid-row-align: center;
  align-self: center;
}

.main-filter .checkbox-list {
  margin-top: 7px;
  margin-bottom: -12px;
}

@media (max-width: 767px) {
  .main-filter__type {
    padding-bottom: 18px;
  }

  .main-filter__select {
    margin-top: 18px;
  }
  :root {
    --bgTextSize: 100px;
  }

  .main-intro--trim-100 {
    height: 62vh !important;
    min-height: 380px !important;
  }

  /* Gradient fade at the bottom of the hero into the dark strip */
  .main-intro--trim-100 .main-intro-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #23262f);
    pointer-events: none;
    z-index: 2;
  }

  .main-intro--trim-100 + .container {
    background: #23262f !important;
    padding-bottom: 28px !important;
  }

  /* White card floats up slightly over the hero, with rounded corners and shadow */
  .main-filter {
    margin-top: -28px !important;
    margin-bottom: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .main-intro--trim-100 {
    min-height: 520px !important;
  }

  /* Gradient fade at the bottom of the hero into the dark strip */
  .main-intro--trim-100 .main-intro-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, #23262f);
    pointer-events: none;
    z-index: 2;
  }

  .main-intro--trim-100 + .container {
    background: #23262f !important;
    padding-bottom: 36px !important;
  }

  /* White card floats up slightly over the hero, with rounded corners and shadow */
  .main-filter {
    margin-top: -28px !important;
    margin-bottom: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45) !important;
  }
}

@media (min-width: 1024px) {
  .main-filter__select {
    margin-top: 0;
    border-left: 1px solid #e4eaf0;
    padding: 0 21px;
    width: 20%;
  }

  .main-filter__submit {
    margin: 0 0 0 auto;
  }
}

@media (min-width: 992px) {
  .main-filter__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .main-filter__type {
    border-bottom: none;
    padding-bottom: 0;
    width: 20%;
  }

  .main-filter .select .choices {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    font-size: 18px;
    line-height: 2rem;
  }

  .main-filter .select .choices__inner {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    height: 2rem;
    font-size: 18px;
  }

  .main-filter .select .choices__list--dropdown {
    margin-top: 21px;
    min-width: 235px;
  }

  .main-filter .select .choices[data-type*="select-multiple"] .choices__input,
  .main-filter .select .choices__list--multiple .choices__item {
    font-weight: 500;
    font-size: 18px;
  }

  .main-filter
    .select
    .choices__list--dropdown
    .choices__item--selectable.is-highlighted {
    background-color: #e4eaf0;
  }

  .main-filter .select .app-dropdown .app-dropdown-selected,
  .main-filter .select .selectr-selected {
    border-bottom: none;
    padding: 0 40px 0 0;
    width: 100%;
    height: 2rem;
    font-weight: 500;
    font-size: 18px;
    line-height: 2rem;
  }

  .main-filter
    .select
    .selectr-container.multiple.has-selected
    .selectr-selected {
    padding: 0 40px 0 0;
  }

  .main-filter__submit .button {
    white-space: nowrap;
  }

  .main-filter {
    margin: -115px 0 -45px;
    padding: 21px;
  }

  .main-intro--trim-100 + .container .main-filter {
    margin-bottom: 24px;
  }
}

@media (max-width: 991px) {
  .main-filter .select .choices:after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}

@media (max-width: 1023px) {
  .main-filter__submit .button {
    justify-content: space-between;
    max-width: unset;
    width: 100%;
  }
}

.select__icon svg {
  display: block;
  width: 0.9333333333rem;
  height: 18px;
}

.main-filter button i svg {
  width: 1.2rem;
  height: 1.2rem;
}

.main-filter a:hover {
  text-decoration: none;
}
.main-filter button {
  border: 1px solid #1aa0e1;
  box-shadow: 0 8px 16px rgba(15, 106, 177, 0.25);
  border-radius: 0.2666666667rem;
  padding: 4px 12px;
  font-weight: 600;
  font-size: 0.9333333333rem;
  line-height: 1.3333333333rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #1aa0e1;
  transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main-filter button:hover {
  border-color: #0f6ab1;
  background: #0f6ab1;
}

.main-filter button i {
  border-radius: 0.2666666667rem;
  padding: 0.6rem;
  display: inline-block;
  width: 24px;
  line-height: 0;
  background: rgba(24, 29, 39, 0.15);
}

.select__label {
  position: relative;
  font-size: 0.8rem;
  line-height: 18px;
  color: #627690;
}

.select__icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.select__icon svg {
  display: block;
  width: 0.9333333333rem;
  height: 18px;
}

.select__icon-container {
  position: relative;
  padding-left: 25px;
}

.main-filter .selector {
  display: none;
}

.ts-wrapper.multi .ts-control > div {
  margin: 0 3px 0 0 !important;
  padding: 0 6px !important;
}

.ts-control {
  border: none !important;
  border-bottom: 1px solid rgba(98, 118, 144, 0.5) !important;
  border-radius: 0 !important;
  height: 30px;
  flex-wrap: nowrap !important;
  padding: 5px 22px 5px 8px !important; /* space for caret */
  min-width: 134px;
  max-width: 134px;
}

/* Tom Select: caret arrow on controls */
.ts-wrapper .ts-control {
  position: relative;
}
.ts-wrapper .ts-control:after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #627690;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  pointer-events: none;
}
.ts-wrapper.dropdown-active .ts-control:after,
.ts-wrapper.focus .ts-control:after {
  transform: translateY(-50%) rotate(180deg);
}

.ts-control:focus-visible {
  outline: none !important;
}

.plugin-dropdown_input .dropdown-input-wrap {
  overflow: hidden;
}
.plugin-dropdown_input .dropdown-input:focus-visible {
  outline: none !important;
  padding: 8px 12px !important;
}

/* Tom Select: option label + count aligned to end */
.ts-dropdown .option.ccx-ts-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ts-dropdown .option.ccx-ts-option .ccx-ts-option__label {
  flex: 1 1 auto;
  min-width: 0;
}
.ts-dropdown .option.ccx-ts-option .ccx-ts-option__count {
  flex: 0 0 auto;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .ts-control {
    width: 100%;
    max-width: 100%;
  }

  .use {
    margin-top: 260px;
  }
}

.use {
  position: relative;
  padding: 103px 0 107px;
  background: #edf2f5;
}

@media (max-width: 991px) {
  .main-page .use {
    padding-top: 3.3333333333rem;
    padding-bottom: 3.3333333333rem;
  }
}
@media (max-width: 767px) {
  .main-page .use {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .use {
    padding: 0 0 32px;
    background: 0 0;
  }
}
.use__decor {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -15px;
}

.use__decor img {
  vertical-align: middle;
  width: 698px;
  max-width: 100%;
}

.use .background-text {
  position: absolute;
  left: 50%;
  bottom: 8px;
  margin-left: -650px;
  text-stroke: 1px rgba(98, 118, 144, 0.25);
}
.use .background-text,
.values .background-text {
  -webkit-text-stroke: 0.5px rgba(98, 118, 144, 0.25);
}
.background-text {
  font-family: Poppins, sans-serif !important;
  overflow: hidden;
  font-size: var(--bgTextSize) !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: transparent !important;
  -webkit-text-stroke: 0.5px rgba(24, 29, 39, 0.25);
  text-stroke: 1px rgba(24, 29, 39, 0.25);
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .use .background-text {
    margin-left: 0;
    transform: translateX(-50%);
  }
  :root {
    --bgTextSize: 200px;
  }
}

.home-title {
  margin-bottom: 2.6666666667rem;
  text-align: center;
  text-transform: uppercase;
}

.home-title p {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #627690;
}

.home-title p span {
  font-family: Poppins, sans-serif;
  margin-top: 0.8rem;
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 56px;
  line-height: 56px;
  color: #1aa0e1;
}

.use__row {
  font-family: var(--font-family);
  display: flex;
}

@media (max-width: 500px) {
  .use__row {
    flex-wrap: wrap;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .use__row,
  .values__list {
    margin: 0 -15px;
  }
}

.use__col {
  padding: 0 35px;
  width: 50%;
}

@media (max-width: 500px) {
  .use__col {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 500px) {
  .use__col + .use__col {
    margin-top: 15px;
  }
}

@media (max-width: 991px) {
  .use__col {
    padding: 0 15px;
  }
}

.use__item {
  position: relative;
  z-index: 2;
  height: 630px;
  box-shadow: 0 60px 50px -40px rgba(14, 22, 49, 0.45);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: 1s;
  display: block;
}

@media (max-width: 500px) {
  .use__item {
    height: 119vw;
    min-height: unset;
  }
}

@media (max-width: 991px) {
  .use__item {
    height: 60vw;
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .main-slider__item__image,
  .use__item,
  .use__item__image {
    border-radius: 0.2666666667rem;
  }
}

.use__item__image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: 50% 50% / cover no-repeat;
  transition: transform 1s;
}

@media (max-width: 991px) {
  .main-slider__item__image,
  .use__item,
  .use__item__image {
    border-radius: 0.2666666667rem;
  }
}

.use__item--dealer .use__item__image:before {
  opacity: 0.2;
  background-color: #1aa0e1;
}
.use__item-inner,
.use__item__image:before {
  position: absolute;
  left: 0;
  width: 100%;
  transition: 1s;
}
.use__item__image:before {
  content: "";
  top: 0;
  height: 100%;
  opacity: 0;
}

.use__item-inner {
  top: 50%;
  transform: translateY(-50%);
}
.use__item-inner,
.use__item__image:before {
  position: absolute;
  left: 0;
  width: 100%;
  transition: 1s;
}

.use__item__title {
  font-weight: 600;
  font-size: 2.5vw;
  max-width: 90%;
  margin: 8px auto;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.use__item__label,
.use__item__title {
  text-align: center;
  transition: 1s;
}

@media (min-width: 768px) and (max-width: 1919px) {
  .use__item__title {
    font-size: 56px;
    font-size: calc(11.55556px + 3.7037vw);
  }
}

@media (max-width: 768px) {
  .use__item__title {
    font-size: 2.6666666667rem;
  }
}

.use__item__link,
.use__item__text {
  transition: 1s;
}
.use__item__text {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
}

.use__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  font-size: 0.9333333333rem;
  border: 1px solid;
  border-radius: 0.2666666667rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.8571428571em 3.2857142857em;
  margin: 0 auto;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .use__item__label,
  .use__item__text {
    transform: scale(0.8);
  }
}

@media (max-width: 991px) {
  .use__item .use__item__icon,
  .use__item .use__item__label,
  .use__item .use__item__link,
  .use__item .use__item__text {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .login__card-text,
  .use__item__label,
  .use__item__link,
  .use__item__text {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .use__item__label,
  .use__item__text {
    font-size: 1.0666666667rem;
  }
}

@media (max-width: 991px) {
  .use__item .use__item__icon,
  .use__item .use__item__label,
  .use__item .use__item__link,
  .use__item .use__item__text {
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .login__card-text,
  .use__item__label,
  .use__item__link,
  .use__item__text {
    font-size: 0.8rem;
  }
}
@media (max-width: 991px) {
  .use__item__link {
    bottom: 26px;
  }
}

.use a:hover {
  color: #fff;
}

.use__col:hover .use__item__text {
  opacity: 1;
}

@media (max-width: 425px) {
  :root {
    --bgTextSize: 70px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --bgTextSize: 150px;
  }
}

.layout__footer {
  flex: 0 0 auto;
}

.footer {
  background-color: white;
  padding-top: 5.33em;
  display: block;
}

.footer__top {
  justify-content: space-between;
  padding-bottom: 25px;
}

.footer__top {
  padding-top: 2.8em;
  padding-bottom: 2.8em;
  align-items: center;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  color: hsla(0, 0%, 100%, 0.6);
  padding-bottom: 2.266em;
  align-items: flex-end;
}
.footer__top {
  display: flex;
  flex-flow: row wrap;
}

.footer__right {
  flex-direction: row;
  gap: 1em;
}

.footer__right {
  flex: 0 1 auto;
}

@media only screen and (min-width: 768px) {
  .footer__top .footer__right {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .footer__right {
    text-align: right;
  }
}

.footer__link img {
  max-width: 100%;
}

.footer__socials .sprite-icon {
  width: 20.8px !important;
  height: 20.8px !important;
}

.footer__socials {
  display: flex !important;
  gap: 1em !important;
}

.footer__left[data-v-03ce36d2] {
  flex: unset;
}

.product__card-overlay .button {
  border: 1px solid #1aa0e1;
  box-shadow: 0 8px 16px rgba(15, 106, 177, 0.25);
  border-radius: 0.2666666667rem;
  padding: 0.8666666667rem 1.6rem;
  font-weight: 600;
  font-size: 0.9333333333rem;
  line-height: 1.3333333333rem;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #1aa0e1;
  transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.product__card-overlay .button,
.product__card-overlay .button i,
.product__card-overlay .button i svg,
.product__card-overlay .special svg {
  display: inline-block;
  vertical-align: middle;
}

.product__card-overlay .button--outline {
  border-color: rgba(24, 29, 39, 0.2);
  box-shadow: none;
  background: 0 0;
}

.car-info-line__nav ul,
.footer__nav ul,
.lang-switcher__dropdown,
.main-menu,
.our-root__subnav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.footer__nav ul li:not(:last-child),
.footer__socials a:not(:last-child),
.notifications__btn_prev {
  margin-right: 1em !important;
}

.footer__nav a {
  font-size: 14px;
  color: #000 !important;
  text-decoration: none;
}

.products__list {
  font-family: var(--font-family);
  padding-top: 2.6666666667rem;
  justify-content: flex-start;
  box-sizing: border-box;
}
.products__list:before,
.products__list:after {
  box-sizing: border-box;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

@media only screen and (min-width: 576px) {
  .products__list {
    margin-left: calc(20px * -1);
    margin-right: calc(20px * -1);
  }
}

@media (min-width: 576px) and (max-width: 1099px) {
  .products__list {
    padding-top: 0;
  }
}

.row > * {
  --bs-gutter-x: 1.5rem;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
}

.product__card {
  --plGap: 1rem;
  padding: 0;
  margin-bottom: calc(var(--plGap) * 2);
  background-color: #fff;
  box-shadow: 0 24px 20px -20px rgba(40, 55, 71, 0.15),
    0 40px 80px -40px rgba(15, 106, 177, 0.1), 0 30px 60px rgba(40, 55, 71, 0.1);
  transition: box-shadow 0.3s linear;
}

.product__card,
.product__card-top {
  position: relative;
  z-index: 10;
  border-radius: 0.2666666667rem;
}

.product__card-top {
  padding: 1rem 1.3333333333rem;
  background: #fff;
}

.product__card-name {
  font-size: 1.3rem;
  padding-right: 3.0666666667rem;
  min-height: 2.66em;
  font-weight: 400;
}

.product__card-model {
  margin-top: 0.3333333333rem;
  color: #627690;
}

.product__card-comparison {
  position: absolute;
  top: 1.1333333333rem;
  right: 1.1333333333rem;
}

.contacts-map,
.contacts-way .container-way,
.our-workings .process__container,
.product__card-comparison .checkbox label {
  padding: 0;
}

.product__card-comparison .checkbox label i {
  width: 1.3333333333rem;
  height: 1.3333333333rem;
  position: relative;
  display: block;
  border-radius: 50%;
  border-color: #627690;
  transition: 0.3s;
}

.product__card-comparison .checkbox label i .comparison__icon {
  display: none;
  position: relative;
  z-index: 0;
  stroke: #1aa0e1;
  visibility: visible;
  transition: 0.3s ease-in-out, visibility 0.3s linear, z-index 0.3s linear;
}

.product__card-comparison .checkbox label input:checked ~ i {
  opacity: 1;
  border-color: #00c977;
  background: #00c977;
}

.product__card-picture {
  position: relative;
  background: url(../_images/no-image.svg) 50%/40% no-repeat,
    50%/40% no-repeat #627690;
  margin-top: -0.8666666667rem;
}

.product__card-picture:before {
  content: "";
  position: relative;
  width: 100%;
  display: block;
  padding-bottom: 70%;
}

.product__card-picture .product__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.product__card-picture:hover .product__card-overlay:after {
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(15, 106, 177, 0.8)),
    to(rgba(15, 106, 177, 0.6))
  );
  background: -o-linear-gradient(
    top,
    rgba(15, 106, 177, 0.8) 0,
    rgba(15, 106, 177, 0.6) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(15, 106, 177, 0.8),
    rgba(15, 106, 177, 0.6)
  );
  transition: 0.3s;
}

.product__card-picture:hover .product__card-overlay .button {
  opacity: 1;
  transition: 0.3s;
}

.product__card-picture.arrow-hover .product__card-overlay:after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(24, 29, 39, 0.3)),
    to(rgba(24, 29, 39, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(24, 29, 39, 0.3) 0,
    rgba(24, 29, 39, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(24, 29, 39, 0.3),
    rgba(24, 29, 39, 0)
  );
  transition: 0.3s;
}

.product__card-picture.arrow-hover .product__card-overlay .button {
  opacity: 0;
  transition: 0.3s;
}

.product__card-mark {
  position: absolute;
  z-index: 10;
  top: 0.3333333333rem;
  left: -0.2666666667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0.6rem 2.2333333333rem 0.6rem 0;
  border-radius: 0.2666666667rem;
}

.product__card-mark .mark__icon {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.product__card-mark .mark__text {
  position: relative;
  z-index: 1;
  top: -1px;
  color: #fff;
  font-weight: 600;
  font-size: 0.8666666667rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-left: 2.3333333333rem;
  background-image: url(../../img/c-logo.svg);
  background-repeat: no-repeat;
  background-position: 0.8rem 0.1333333333rem;
}

.product__card-overlay:after,
.product__card-slider .swiper-wrapper:after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(24, 29, 39, 0.3)),
    to(rgba(24, 29, 39, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(24, 29, 39, 0.3) 0,
    rgba(24, 29, 39, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(24, 29, 39, 0.3),
    rgba(24, 29, 39, 0)
  );
}

.product__card-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.product__card-overlay:after {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: "";
}

.product__card-overlay .button {
  position: relative;
  top: 0.4rem;
  z-index: 3;
  opacity: 0;
  font-weight: 500;
  border-color: #fff;
  transition: 0.3s;
}

.product__card .add-favorite {
  border: none;
  outline: 0;
  background: 0 0;
  padding: 0;
  position: absolute;
  z-index: 11;
  top: 2.2rem;
  right: 1.3333333333rem;
}

.product__card .add-favorite__icon {
  fill: none;
  stroke: #fff;
  transition: 0.3s;
}

.product__card .add-favorite:hover .add-favorite__icon {
  transform: scale(1.1);
  transition: 0.3s;
}

.product__card .add-favorite.active .add-favorite__icon {
  fill: #ff4545;
  stroke: #ff4545;
  transition: 0.3s;
}

.product__card-bottom {
  position: relative;
  margin-top: -13px;
  border-radius: 0.2666666667rem;
  padding: 1.3333333333rem 1.3333333333rem 0.8rem;
  background-color: #fff;
  z-index: 10;
  overflow: hidden;
}

.product__card-bottom .features__list-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-bottom: 0.5333333333rem;
}

.product__card-bottom .features__list-label .features__list-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.product__card-bottom .features__list-label:hover {
  border-color: rgba(26, 160, 225, 0.4);
}

.car-detail .specifications__block .tooltip__info--right .info,
.dashboard-page.welcome .welcome__card--sm .icon__files,
.filter-btn__hide .icon,
.filter-btn__refresh .icon,
.modal-thanks .check-circle,
.product__card-bottom .features__list-label:hover .features__list-icon {
  stroke: #1aa0e1;
}

.product__card-price {
  padding-bottom: 1.2666666667rem;
  border-bottom: 1px solid #e4eaf0;
  margin-bottom: 1rem;
  min-height: 97px;
}

.product__card-price .price .h4 {
  font-weight: 600;
  white-space: nowrap;
}

.product__card-price .price__mark {
  display: block;
  padding: 0.2666666667rem 0.3333333333rem;
  white-space: nowrap;
  font-size: 16px;
  font-size: calc(11.35484px + 0.3871vw);
  line-height: 1;
}

.product__card-price .price__mark:before {
  left: -21px;
  left: calc(-14.80645px - 0.51613vw);
  border-width: calc(8.90323px + 0.25806vw);
}

.product__card-price .price__mark--minus {
  font-size: 0.6666666667rem;
  vertical-align: middle;
  line-height: 1;
}

.product__card-price .price__mark--percent {
  font-size: 10px;
  line-height: 1;
  top: 0;
}

.car-detail .intro__info .price__discount .h2,
.cart__message.--error,
.product__card-price .price__discount .h4,
.trading-list .product__card.expired .plug__text {
  color: #ff4545;
}

.product__card-price .price__bottom {
  line-height: 1;
}

.product__card-price .price__bottom-num {
  font-weight: 500;
  margin-right: 5px;
}

.product__card-price .price__bottom-text {
  font-size: 0.7333333333rem;
  line-height: 1.45;
  vertical-align: middle;
}

.product__card-slider {
  position: absolute;
  max-height: inherit;
  z-index: auto;
}

.product__card-slider .swiper-wrapper {
  max-height: inherit;
}

.product__card-slider .swiper-slide {
  max-height: inherit;
  background-color: transparent;
}

.product__card-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.product__card-slider-next.swiper-button-next {
  right: 0.6666666667rem;
  top: 55%;
}

.product__card-slider-next.swiper-button-next:hover ~ a.button {
  opacity: 0;
}

.product__card-slider-prev.swiper-button-prev {
  left: 0.6666666667rem;
  top: 55%;
}

.features__list,
.product__card-stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.product__card-stock .stock__label {
  display: inline-block;
  margin-right: 0.7333333333rem;
  margin-bottom: 0.5333333333rem;
  min-width: 0;
  text-align: left;
  color: inherit;
  border: 0;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.2rem;
  padding: 0;
  border-radius: 0;
}

/* Base pill for each label */
.product__card-stock .stock__label > .label {
  display: inline-block;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  color: #627690;
  border: 1px solid rgba(98, 118, 144, 0.5);
  padding: 0.2rem 0.5333333333rem 0.1333333333rem;
  border-radius: 0.2666666667rem;
}

.product__card.ccx-special {
  border: 1.5px solid rgba(0, 201, 119, 0.5);
}
.product__card.ccx-regular {
  border: 1.5px solid rgba(26, 160, 225, 0.5);
}

/* Label colors */
.product__card-stock .stock__label > .special {
  color: #00c977;
  border-color: rgba(0, 201, 119, 0.5) !important;
}
.product__card-stock .stock__label > .regular {
  color: #1aa0e1;
  border-color: rgba(26, 160, 225, 0.5) !important;
}

/* Legacy label blocks on older list/detail layouts */
.labels .special {
  background-color: #00c977 !important;
  color: #fff !important;
}
.labels .regular {
  background-color: #1aa0e1 !important;
  color: #fff !important;
}

.cart__car,
.cart__total,
.filter-btn,
.product__card-stock .stock__color {
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
}

.product__card-stock .stock__color {
  display: flex;
  justify-content: center;
  margin-right: 8px;
  margin-bottom: 8px;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 4px rgba(91, 114, 218, 0.2);
}

.product__card-stock .stock__color.--purple {
  background: #5b72da;
}

.product__card-stock .stock__color.--blue,
.range-slider .noUi-target .noUi-connect {
  background: #1aa0e1;
}

.product__card-stock .stock__color.--green {
  background: #00c977;
}

.product__card-stock .stock__color.--black {
  background: #000;
}

.product__card-stock .stock__color.--sand {
  background: #e2c19b;
}

.product__card:hover {
  box-shadow: 0 24px 20px -20px rgba(40, 55, 71, 0.35),
    0 40px 80px -40px rgba(15, 106, 177, 0.3), 0 30px 60px rgba(40, 55, 71, 0.3);
}

.product__card:hover .product__card-comparison .checkbox label i {
  opacity: 1;
  transition: 0.3s;
}

@media (max-width: 425px) {
  .product__card-price .price__mark {
    font-size: 13px;
  }

  .product__card-price .price__mark:before {
    left: -17px;
    border-width: 10px;
  }
}

@media (min-width: 1200px) {
  .product__card-price .price__mark {
    font-size: 16px;
  }

  .product__card-price .price__mark:before {
    left: -21px;
    border-width: 12px;
  }
}

@media only screen and (min-width: 2000px) {
  .product__card {
    width: calc(25% - 20px * 2) !important;
  }
}

@media only screen and (max-width: 575px) {
  .product__card {
    width: 100%;
    max-width: 22.8rem;
  }
}

@media only screen and (max-width: 330px) {
  .product__card-mark {
    padding: 0.2666666667rem 0.6rem 0.2rem;
  }

  .product__card-mark .mark__text {
    font-size: 0.6rem;
  }
}
@media only screen and (min-width: 576px) {
  .product__card {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media only screen and (min-width: 1100px) {
  .product__card {
    width: calc(33.33333% - 20px * 2);
    min-width: 300px;
    margin-bottom: calc(20px * 2);
  }

  .product__card.not-login {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 6rem;
    transition: z-index 0.3s linear 0.6s, box-shadow 0.3s linear;
  }

  .product__card.not-login .product__card-bottom {
    position: absolute;
    width: 100%;
    min-height: 6.8rem;
    box-shadow: 0 24px 20px -20px rgba(40, 55, 71, 0),
      0 40px 80px -40px rgba(15, 106, 177, 0), 0 30px 60px rgba(40, 55, 71, 0);
    transition: box-shadow 0.3s linear;
  }

  .product__card.not-login .product__card-price {
    border-bottom: none;
    opacity: 0;
    margin-top: -5.2rem;
    transition: margin 0.3s linear, opacity 0.6s ease-in,
      border-bottom 0.3s linear;
  }

  .product__card.not-login:hover {
    z-index: 11;
    transition: z-index 0.3s linear, box-shadow 0.3s linear;
  }

  .product__card.not-login:hover .product__card-bottom {
    box-shadow: 0 24px 20px -20px rgba(40, 55, 71, 0),
      0 40px 80px -40px rgba(15, 106, 177, 0), 0 30px 60px rgba(40, 55, 71, 0.3);
  }

  .product__card.not-login:hover .product__card-price {
    opacity: 1;
    margin-top: 0;
    border-bottom: 1px solid #e4eaf0;
  }
}

@media (min-width: 876px) and (max-width: 1099px) {
  .product__card {
    width: calc(33.33333% - 20px * 2);
    min-width: 265px;
  }
}

@media (min-width: 576px) and (max-width: 875px) {
  .product__card {
    width: calc(50% - 20px * 2);
    min-width: 245px;
  }
}

@media only screen and (min-width: 3000px) {
  .product__card {
    width: calc(20% - 20px * 2) !important;
  }
}

.product__card {
  display: flex;
  flex-direction: column;
}

.content-holder {
  width: 100%;
  max-width: 1280px;
}

#search-list .content-holder .col-701 {
  width: 100%;
  max-width: 1000px;
}

.results-list > .layer-one {
  width: 100%;
}

@media only screen and (max-width: 1265px) {
  #search-list .content-holder .full-width {
    display: none;
  }
  #search-list .content-holder .col-701 {
    max-width: calc(100% - 32px);
    margin-inline: 16px;
  }
  #search-list .products__list {
    justify-content: center;
  }

  .content-holder {
    width: 100%;
    max-width: calc(100% - 32px);
    margin-inline: 16px;
  }
}

/* Mobile filter trigger */
.mobile-filter-trigger .clear-filters {
  display: none;
}
@media only screen and (max-width: 1265px) {
  .mobile-filter-trigger .clear-filters {
    display: block;
  }
  .mobile-filter-trigger__btn {
    border: 1px solid #1aa0e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #1aa0e1;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 465px) {
  .mobile-filter-trigger {
    margin-left: unset !important;
  }
}

/* Drawer overrides for filters */
#filtersDrawer .cc-mobile__panel {
  overflow-y: auto;
}
body.no-scroll {
  overflow: hidden;
}

/* Global loading overlay */
body.is-loading #ccLoader {
  opacity: 1;
  visibility: visible;
}

#ccLoader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

#ccLoader .cc-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(26, 160, 225, 0.25);
  border-top-color: #1aa0e1;
  animation: ccSpin 0.8s linear infinite;
}

@keyframes ccSpin {
  to {
    transform: rotate(360deg);
  }
}

.product__card-model-km {
  display: flex;
  justify-content: space-between;
}

.mt-0 {
  margin-top: 0;
}

.features__list-text {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Clear Filters */
.button-neutral {
  display: flex;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #e4eaf0;
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
  color: #627690;
  background: #fff;
}
.button-neutral:hover {
  border-color: #009ada;
  color: #009ada;
  text-decoration: none !important;
}
.button-neutral:hover .badger_header {
  color: #009ada;
}

/* Primary call-to-action: Buy Now (dark orange) */
.button-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgb(226, 132, 31);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: rgb(226, 132, 31); /* dark orange */
}
.button-buy:hover {
  border-color: rgb(202, 112, 10);
  background: rgb(202, 112, 10);
  color: #ffffff;
  text-decoration: none !important;
}
.button-buy[aria-disabled="true"],
.button-buy.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Old/original price styling (for lowered price) */
.price__old {
  text-decoration: line-through;
  color: #9aa7b7 !important;
  margin-right: 8px;
  font-weight: 400 !important;
  font-size: 14px !important;
  vertical-align: text-top;
}

.sort-view.layer-one {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sort-view.layer-one form {
  display: contents;
}
.sort-actions {
  margin-left: auto;
}

/* Login page */
.login-page {
  min-height: calc(100vh);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login__container {
  width: 100%;
  margin: 0 auto;
}
.login__wrapper {
  display: flex;
  gap: 0;
  max-width: 100%;
  height: 100vh;
}
.login__card {
  flex: 0 0 45%;
  padding: 60px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login__brand {
  margin-bottom: 40px;
}
.login__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #2a3545;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.login__logo {
  height: 32px;
}
.login__form {
  max-width: 440px;
  width: 100%;
}
.login__label {
  display: block;
  font-family: Poppins, sans-serif;
  color: #627690;
  margin: 18px 0 8px;
}
.login__input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8e1ea;
  background: transparent;
  padding: 12px 0;
  font-size: 18px;
  color: #2a3545;
}
.login__input:focus-visible {
  outline: none;
  border-bottom-color: #9fb6cc;
}
.login__password {
  position: relative;
}
.login__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.login__toggle:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: 7px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23627690" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12Z"/><circle cx="12" cy="12" r="3"/></svg>')
    center/contain no-repeat;
}
.login__toggle.is-on:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23627690" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.94 17.94A10.94 10.94 0 0 1 12 20c-7 0-11-8-11-8a21.77 21.77 0 0 1 5.06-6.94"/><path d="M1 1l22 22"/><path d="M9.88 9.88A3 3 0 0 0 12 15a3 3 0 0 0 2.12-5.12"/></svg>');
}
.login__extras {
  margin: 10px 0 26px;
  text-align: right;
}
.login__link {
  color: #1aa0e1;
  text-decoration: none;
}
.login__submit {
  width: 100%;
  border: 1px solid #1aa0e1;
  box-shadow: 0 18px 30px rgba(15, 106, 177, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  background: #1aa0e1;
  transition: 0.2s ease;
}
.login__submit:hover {
  background: #0f6ab1;
  border-color: #0f6ab1;
}

/* Sign Up Section */
.login__signup {
  flex: 0 0 45%;
  padding: 60px 0 60px 40px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.login__signup-header {
  width: 100%;
  max-width: 440px;
  margin-bottom: 20px;
}
.login__signup-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #2a3545;
  margin-bottom: 12px;
}
.login__signup-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1aa0e1;
}
.login__signup-image {
  width: 100%;
  max-width: 440px;
  background-image: url("../_images/dealers.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 340px;
}
.login__signup-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.login__signup-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgb(18 21 24 / 85%) 0%,
    rgb(13 13 26 / 70%) 50%,
    rgb(0 0 0 / 0%) 100%
  );
  padding: 40px;
  color: #fff;
}
.login__signup-content {
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.login__signup-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.login__signup-text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 24px;
}
.login__signup-text--header {
  font-size: 12px;
  line-height: 1.6;
  color: #627690;
  margin-bottom: 0;
}
.login__signup-button,
.login__signup-button.button,
a.login__signup-button {
  border: 1px solid #1aa0e1;
  box-shadow: 0 8px 16px rgba(15, 106, 177, 0.25);
  border-radius: 0.2666666667rem;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9333333333rem;
  line-height: 1.3333333333rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #1aa0e1;
  transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  margin: 0 auto;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}
.login__signup-button:hover,
.login__signup-button.button:hover,
a.login__signup-button:hover {
  border-color: #0f6ab1;
  background: #0f6ab1;
  color: #fff;
  text-decoration: none;
}
.login__signup-button i,
.login__signup-button.button i,
a.login__signup-button i {
  border-radius: 0.2666666667rem;
  padding: 0.6rem;
  display: inline-block;
  width: 24px;
  line-height: 0;
  background: rgba(24, 29, 39, 0.15);
}
.login__signup-button i svg,
.login__signup-button.button i svg,
a.login__signup-button i svg {
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 992px) {
  .login__wrapper {
    flex-direction: column;
    margin-top: 40px;
  }
  .login__card,
  .login__signup {
    flex: 1;
    padding: 40px;
  }
  .login__signup-image {
    min-height: 400px;
  }
}

.cnTopNotification {
  z-index: 2050 !important;
}

#car-pagination .default-tabs {
  position: relative;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
#car-pagination .default-tabs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#car-pagination .default-tabs ul li {
  margin: 0;
}

.search-area fieldset div.checkboxes ul li,
.search-area .link-list li {
  display: flex;
  align-items: center;
}

.search-area .link-list li label {
  margin-bottom: 0;
}

.search-area fieldset div.checkboxes ul li .badge,
.search-area .link-list li .badge {
  margin-left: auto;
}

.search-area .checkboxes li {
  line-height: 1.4;
}
.search-area .checkboxes li label {
  margin-bottom: 0;
}

.search-area .checkboxes .checker {
  padding-top: 0;
}

.search-area fieldset div.checkboxes ul li {
  padding: 8px 0 8px 0;
  margin: 0;
}

#search-list .link-list li,
.search-area .link-list li {
  width: 215px;
  background-image: none !important;
  display: flex;
  padding: 0;
  align-items: center;
}
#search-list .link-list li label {
  margin-bottom: 0;
}
#search-list .link-list li .badge {
  margin-left: auto;
}

.car-full-image {
  display: flex;
  gap: 8px;
}

/* New vertical images navigation with scroller and buttons */
.car-full-image .images-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 108px; /* fits thumb width incl. padding */
  gap: 6px;
}
.car-full-image .images-nav__btn {
  border: 1px solid #e4eaf0;
  background: #fff;
  color: #627690;
  border-radius: 6px;
  height: 28px;
  line-height: 26px;
  padding: 0;
}
.car-full-image .images-nav__btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.car-full-image .images-nav__scroller {
  position: relative;
  overflow: auto;
  overscroll-behavior: contain;
  max-height: 380px; /* adjust as needed to fit main image */
  padding-right: 4px; /* space for scroll bar */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.car-full-image .images-nav__scroller.dragging {
  cursor: grabbing;
}
.car-full-image .images-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.car-full-image .images-navigation li {
  margin: 0;
}
.car-full-image .images-navigation img {
  display: block;
  width: 100px;
  height: 72px;
  object-fit: cover;
  border: 1px solid #e4eaf0;
  border-radius: 6px;
  opacity: 0.4;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.car-full-image .images-navigation li.is-active img {
  opacity: 1;
}

.car-full-image .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.car-full-image .main-image {
  height: auto;
  min-height: 292px;
}
#car-details .content-holder .full-width.vehicle-description {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
}

#car-details .content-holder .col-480 {
  width: 50%;
}

#car-details .car-full-specs {
  width: 50%;
}


@media only screen and (max-width: 992px) {
  #car-details .content-holder .full-width.vehicle-description {
    flex-direction: column;
  }

  #car-details .car-full-specs {
    width: 100%;
  }

  #car-details .content-holder .col-480 {
    width: 100%;
  }
}

#car-pagination {
  padding-top: 30px;
  min-height: auto;
  padding-bottom: 0;
}

#car-details .car-full-specs .price-car {
  margin: 0;
}

.detail-list li .text-content .layer-three span.label,
.labels span.label {
  color: #627690;
  border: 1px solid rgba(98, 118, 144, 0.5);
  padding: 0.2rem 0.5333333333rem 0.1333333333rem;
  border-radius: 0.2666666667rem;
}
/* Stock state pills */
.labels .in-stock {
  color: #00c977;
  border-color: rgba(0, 201, 119, 0.5);
}
.labels .out-stock {
  color: #ff4545;
  border-color: rgba(255, 69, 69, 0.5);
}

.filters-actions {
  display: flex;
  gap: 8px;
}
#car-pagination .page-main-heading.extra-space {
  margin-bottom: 0px;
}

.product__card-overlay:after,
.product__card-slider .swiper-wrapper:after {
  background: none;
}

.button-large {
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 12px !important;
}

.standard-text-content {
  font-family: var(--font-family);
}

/* Detail page: moved from embedded <style> in detail.php */
#car-details .specs-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

#car-details .spec-col {
  flex: 1;
  min-width: 320px;
}

#car-details .spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

#car-details .spec-table th {
  text-align: left;
  padding: 24px 12px 10px 12px;
  color: #1b2432;
}

#car-details .spec-table th.with-border-top {
  border-top: 1px solid #e5e7eb;
}

#car-details .spec-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e5e7eb;
}

/* Make first column wider to match design */
#car-details .spec-table td:first-child {
  width: 45%;
}

#car-details .equipment-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  padding-left: 20px;
}

#car-details .equipment-list li {
  list-style-type: disc;
}

.clear-both {
  clear: both;
}

@media (max-width: 900px) {
  #car-details .specs-columns .spec-col {
    min-width: 100% !important;
    flex-basis: 100% !important;
    flex-grow: 1 !important;
  }

  #car-details .equipment-list {
    columns: 1 !important;
    -webkit-columns: 1 !important;
    -moz-columns: 1 !important;
  }

  .full-width {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  #car-details .spec-table {
    font-size: 13px;
  }

  #car-details .spec-table td,
  #car-details .spec-table th {
    padding: 8px;
  }

  #car-details .tag-list span {
    font-size: 12px;
  }

  .full-width {
    width: 100% !important;
  }

  #car-details .content-holder .col-480 {
    width: 368px;
  }
}

/* Contact details list width (moved from inline style) */
.icon-list.contact-details {
  width: 701px;
}
.tag_item {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #e5e7eb;
  background: #f8f9fb;
  border-radius: 20px;
  font-size: 13px;
  color: #1b2432;
}

.w-full {
  width: 100%;
}
.search-area fieldset {
  width: 215px;
}
/* Mobile menu divider */
.cc-mobile__menu .cc-mobile__divider {
  list-style: none;
  height: 0;
  border-top: 1px solid #e5e7eb;
  margin: 12px 0;
}

/* Desktop account dropdown */
.cc-account {
  position: relative;
  display: inline-block;
}
.cc-account__btn {
}
.cc-account__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  padding: 8px 0;
  display: none;
  z-index: 1000;
}
.cc-account.open .cc-account__menu {
  display: block;
}
.cc-account__menu li {
  list-style: none;
}
.cc-account__menu a {
  display: block;
  padding: 10px 14px;
  color: #1b2432;
}
.cc-account__menu a:hover {
  background: #f5f7fb;
}

.labels {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.labels .label {
  margin-right: 0px !important;
}
.price-card {
  height: 51px;
}
.h-full {
  height: 100%;
}

.standard-text-content p,
.standard-text-content ul li,
.standard-text-content a {
  font-size: 14px;
}
.facet-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.facet-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.facet-expand-all,
.facet-collapse-all {
  font-size: 13px;
  color: #1aa0e1;
  cursor: pointer;
  font-weight: 500;
}

.facet-expand-all:hover,
.facet-collapse-all:hover {
  text-decoration: none;
}

.section__col-text {
  font-size: 16px;
  font-family: Poppins, sans-serif;
  line-height: 1.8666666667;
}

.section__title.h1,
.our-roots .h1 {
  font-size: 56px;
  font-size: clamp(11.55556px, calc(11.55556px + 3.7037vw), 56px) !important;
  font-weight: 600 !important;
  color: #fff !important;
  font-family: Poppins, sans-serif !important;
}

.premium__block-text .section__col-text {
  color: #fff;
}
.fz-bigger {
  color: #627690;
}

.footer__socials a {
  color: #111 !important;
}

@media only screen and (min-width: 768px) {
  .footer__top .footer__right {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: left;
    flex-direction: row !important;
  }
}

.footer__link {
  margin-top: 0em !important;
}
.our-roots .team__title--top {
  color: #283747 !important;
}

.our-roots .story__content p {
  font-size: 16px;
  line-height: 1.8666666667;
}

.history__slide-year {
  margin-bottom: 2.6666666667rem !important;
  color: #627690 !important;
  font-size: calc(11.33333px + 1.38889vw) !important;
  font-family: Poppins, sans-serif !important;
}

.history__slide-title {
  line-height: 1.1 !important;
  font-size: calc(26.36364px + 1.13636vw) !important;
  font-weight: 600 !important;
  font-family: Poppins, sans-serif !important;
}
.history__slide-text {
  font-family: Poppins, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.8666666667 !important;
}

.premium__label p {
  color: #fff !important;
  font-size: 16px !important;
}

.history__slide {
  overflow: unset !important;
}

/* --------------------------------------------------
 * Home: login / registration strip
 * -------------------------------------------------- */
.home-auth-strip {
  position: relative;
  z-index: 1;
  clear: both;
  padding: 2rem 0 2.5rem;
  background: #edf2f5;
}

@media (min-width: 992px) {
  .home-auth-strip {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}

.home-auth-strip__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-auth-strip__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(40, 55, 71, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-auth-strip__card--accent {
  background: linear-gradient(135deg, #1aa0e1 0%, #0b5c8a 100%);
  color: #fff;
  box-shadow: 0 20px 36px rgba(26, 160, 225, 0.35);
}

.home-auth-strip__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 12px;
  color: #1aa0e1;
}

.home-auth-strip__card--accent .home-auth-strip__eyebrow {
  color: #d6ecf9;
}

.home-auth-strip__title {
  margin: 0;
  font-size: 24px;
  color: #283747;
  font-weight: 800;
}

.home-auth-strip__card--accent .home-auth-strip__title {
  color: #fff;
}

.home-auth-strip__text {
  margin: 0;
  color: #627690;
  line-height: 1.6;
}

.home-auth-strip__card--accent .home-auth-strip__text {
  color: #e8f5fd;
}

.home-auth-strip__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.home-auth-strip__button {
  min-width: 180px;
  justify-content: center;
  display: flex !important;
}

.home-auth-strip__button:hover {
  text-decoration: none;
}

.home-auth-strip__card--accent .home-auth-strip__button {
  background: #fff;
  color: #1aa0e1;
}

.home-auth-strip__card--accent .home-auth-strip__button i {
  background: rgba(26, 160, 225, 0.1);
}

.home-auth-strip__secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f2f6fa;
  color: #1aa0e1;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-auth-strip__secondary:hover {
  background: #e5edf5;
  color: #0b5c8a;
}

@media (max-width: 991px) {
  .main-filter {
    margin-bottom: 1.5rem !important;
  }

  .home-auth-strip {
    margin-top: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .home-auth-strip__card {
    padding: 20px;
  }
}

.contact-maps {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

/* Trade with Us: team section */
.team {
  padding: 50px 0 0 0;
  background-color: #f8fafc;
}
.bg-main-color {
  background-color: #f8fafc !important;
}
.team__intro-title {
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.team__intro-text {
  max-width: 720px;
  margin: 0 auto 48px auto;
  text-align: center;
  color: #5f6b7c;
  font-size: 18px;
  line-height: 1.6;
}
.team__heading {
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.team__group {
  margin-bottom: 64px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
.team-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(31, 47, 70, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 280px;
}
.team-card:has(.team-card__image.large-image) {
  max-width: 100%;
}
.team__grid:has(.team-card__image.large-image) {
  grid-template-columns: 1fr;
}
.team-card__image {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team-card__image img {
  width: 100%;
  max-width: 360px;
  max-height: 360px;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}
.team-card__image.large-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

.team-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.team-card__name {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #1b2a41;
  min-height: 2.8em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__role {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #1aa0e1;
  min-height: 2.8em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #5f6b7c;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.team-card__info li + li {
  margin-top: 4px;
}
.team-card__info span {
  font-weight: 600;
  margin-right: 4px;
}
.team-card__extra {
  margin: 0;
  font-size: 14px;
  color: #4d576b;
}
.team-card__languages {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  min-height: 14px;
}
.team-card__languages img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .team {
    padding: 60px 0;
  }
  .team__intro-text {
    font-size: 16px;
  }
  .team__grid {
    grid-template-columns: 1fr;
    justify-self: center;
  }
  .team-card {
    max-width: 320px;
  }
  .team-card__body {
    padding: 20px;
  }
}

.thin {
  font-weight: 300;
}

.premium__block-text-container {
  position: relative;
}

.premium__block-text-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0)
  );
  z-index: 1;
  pointer-events: none;
}

.premium__block-text {
  position: relative;
  z-index: 2;
}

.section__col-text {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.section__title {
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .premium__block-text-container::before {
      background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.55),
          rgba(0, 0, 0, 0.25),
          rgba(0, 0, 0, 0)
      );
  }
}

/* Section 2 (Quality Cars): prevent wrapped title lines from overlapping */
.our-workings .quality .section__title--quality-wrap {
  white-space: normal !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  line-height: 1.22 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
