/* =========================================================
   Featured Cars Carousel
========================================================= */

.vl-cars-carousel {
  position: relative;
  width: 100%;
}

.vl-cars-viewport {
  width: 100%;
  overflow: hidden;
}

.vl-cars-list {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  transition: transform 0.35s ease;
}

/* =========================================================
   Featured Car Card
========================================================= */

.vl-car-card {
  position: relative;

  display: flex;
  flex: 0 0 calc((100% - 72px) / 4);
  flex-direction: column;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e4e4e4;
  border-radius: 10px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.vl-car-card__card-link {
  display: flex;
  flex: 1;
  flex-direction: column;

  color: inherit;
  text-decoration: none;
}

.vl-car-card__card-link:focus-visible {
  outline: 2px solid #d71920;
  outline-offset: -3px;
}

/* Featured Car Image */

.vl-car-card__image {
  position: relative;

  display: block;
  flex: 0 0 auto;

  width: 100%;
  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #f2f2f2;
}

.vl-car-card__image img {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100% !important;
  max-width: none;

  object-fit: cover;

  transition: transform 0.35s ease;
}

/* Missing / Broken Image Placeholder */

.vl-car-card__placeholder {
  position: absolute;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 8px;

  padding: 24px;

  background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);

  text-align: center;
}

.vl-car-card__image.is-image-missing .vl-car-card__placeholder {
  display: flex;
}

.vl-car-card__image.is-image-missing img {
  display: none;
}

.vl-car-card__placeholder-mark {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;

  color: #d71920;
}

.vl-car-card__placeholder-text {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;

  color: #777777;
}

/* Featured Car Content */

.vl-car-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 20px 20px 18px;
}

.vl-car-card__title {
  margin: 0 0 3px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  transition: color 0.2s ease;
}

.vl-car-card__card-link:hover .vl-car-card__title {
  color: #d71920;
}

.vl-car-card__variant {
  margin: 0 0 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
}

.vl-car-card__meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  min-width: 0;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #333333;
}

.vl-car-card__meta-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;

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

  background: #f5f5f5;

  white-space: nowrap;
}

.vl-car-card__meta-item:last-child {
  flex: 0 1 auto;
  min-width: 0;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Featured Car Footer */

.vl-car-card__footer {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: auto;
  padding-top: 18px;

  border-top: 1px solid #eeeeee;
}

.vl-car-card__price {
  flex: 0 0 auto;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;

  color: #d71920;

  white-space: nowrap;
}

.vl-car-card__link {
  display: inline-flex;
  align-items: center;

  gap: 5px;

  margin-left: auto;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.035em;

  color: #111111;

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

  transition: color 0.2s ease;
}

.vl-car-card__link::after {
  content: "→";

  display: inline-block;

  font-size: 14px;

  transition: transform 0.2s ease;
}

.vl-car-card__card-link:hover .vl-car-card__link {
  color: #d71920;
}

.vl-car-card__card-link:hover .vl-car-card__link::after {
  transform: translateX(3px);
}

/* Featured Car Badge */

.vl-car-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;

  padding: 7px 10px;

  border-radius: 999px;

  background: #d71920;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);

  color: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.06em;
}

/* Featured Car Hover */

@media (hover: hover) and (pointer: fine) {
  .vl-car-card:hover {
    transform: translateY(-4px);

    border-color: #d7d7d7;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  }

  .vl-car-card:hover .vl-car-card__image img {
    transform: scale(1.025);
  }
}

/* =========================================================
   Featured Cars Carousel Arrows
========================================================= */

.vl-cars-carousel .vl-cars-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

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

  box-sizing: border-box;

  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;

  margin: 0;
  padding: 0;

  appearance: none;

  border: 1px solid #e2e2e2;
  border-radius: 50%;

  background: #ffffff;
  color: #111111;

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

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.vl-cars-carousel .vl-cars-arrow[hidden] {
  display: none;
}

.vl-cars-carousel .vl-cars-arrow--prev {
  left: -58px;
}

.vl-cars-carousel .vl-cars-arrow--next {
  right: -58px;
}

.vl-cars-carousel .vl-cars-arrow:hover:not(:disabled) {
  background: #d71920;
  border-color: #d71920;
  color: #ffffff;
}

.vl-cars-carousel .vl-cars-arrow:focus {
  border-radius: 50%;
}

.vl-cars-carousel .vl-cars-arrow:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.vl-cars-carousel .vl-cars-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.vl-cars-carousel .vl-cars-arrow:disabled:hover {
  background: #ffffff;
  border-color: #e2e2e2;
  color: #111111;
}

/* =========================================================
   Cars Inventory
========================================================= */

.vl-cars-inventory {
  width: 100%;
}

.vl-cars-inventory__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  width: 100%;

  margin-bottom: 28px;
}

.vl-cars-inventory__count {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;

  color: #111111;
}

.vl-cars-inventory__count strong {
  margin-right: 4px;

  color: #d71920;

  font-weight: 800;
}

.vl-cars-inventory__sort {
  display: flex;
  align-items: center;

  gap: 10px;
}

.vl-cars-inventory__sort label {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;

  color: #555555;
}

.vl-cars-inventory__sort select {
  min-width: 220px;
  height: 42px;

  padding: 0 38px 0 14px;

  border: 1px solid #dddddd;
  border-radius: 6px;

  background: #ffffff;

  color: #111111;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  outline: none;
}

.vl-cars-inventory__sort select:hover {
  border-color: #bdbdbd;
}

.vl-cars-inventory__sort select:focus {
  border-color: #d71920;
}

.vl-cars-inventory__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  width: 100%;
}

.vl-cars-inventory__grid .vl-car-card {
  flex: none;

  width: 100%;
  min-width: 0;
}

.vl-cars-inventory__empty {
  padding: 48px 24px;

  border: 1px solid #e4e4e4;
  border-radius: 10px;

  background: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;

  color: #707070;

  text-align: center;
}

/* =========================================================
   Blog Cards
========================================================= */

.vl-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  width: 100%;
}

.vl-blog-card {
  height: 100%;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e2e2e2;
  border-radius: 4px;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vl-blog-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vl-blog-card__surface {
  display: flex;
  flex-direction: column;

  height: 100%;

  color: inherit;
  text-decoration: none;
}

.vl-blog-card__surface:focus-visible {
  outline: 3px solid #d71a21;
  outline-offset: -3px;
}

.vl-blog-card__image {
  position: relative;

  display: block;

  flex: 0 0 auto;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #eeeeee;
}

.vl-blog-card__image img {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100% !important;
  max-width: none;

  object-fit: cover;

  transform: scale(1);

  transition: transform 220ms ease;
}

/* Blog Missing / Broken Image Placeholder */

.vl-blog-card__placeholder {
  position: absolute;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 8px;

  padding: 24px;

  background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);

  text-align: center;
}

.vl-blog-card__image.is-image-missing .vl-blog-card__placeholder {
  display: flex;
}

.vl-blog-card__image.is-image-missing img {
  display: none;
}

.vl-blog-card__placeholder-mark {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;

  color: #d71920;
}

.vl-blog-card__placeholder-text {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;

  color: #777777;
}

.vl-blog-card__surface:hover .vl-blog-card__image img {
  transform: scale(1.035);
}

.vl-blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;

  min-width: 0;

  padding: 18px 20px 20px;
}

.vl-blog-card__date {
  display: block;

  margin-bottom: 8px;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;

  color: #8a8a8a;
}

.vl-blog-card__title {
  margin: 0 0 20px;

  color: #111111;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;

  overflow-wrap: anywhere;

  transition: color 180ms ease;
}

.vl-blog-card__surface:hover .vl-blog-card__title {
  color: #d71a21;
}

.vl-blog-card__link {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  margin-top: auto;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  color: #d71a21;

  transition: color 180ms ease;
}

.vl-blog-card__surface:hover .vl-blog-card__link {
  color: #b9141b;
}

/* =========================================================
   Blog Archive / Pagination
========================================================= */

.vl-blog-archive {
  width: 100%;
}

.vl-blog-archive__empty {
  padding: 48px 24px;

  border: 1px solid #e2e2e2;
  border-radius: 4px;

  background: #ffffff;

  color: #707070;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;

  text-align: center;
}

.vl-blog-pagination {
  display: flex;
  justify-content: center;

  width: 100%;

  margin-top: 40px;
}

.vl-blog-pagination > .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.vl-blog-pagination > .page-numbers > li {
  margin: 0;
  padding: 0;
}

.vl-blog-pagination a.page-numbers,
.vl-blog-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 38px;
  height: 38px;

  padding: 0 12px;

  border: 1px solid #e2e2e2;
  border-radius: 4px;

  background: #ffffff;

  color: #111111;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.vl-blog-pagination span.page-numbers.current {
  border-color: #d71a21;
  background: #d71a21;
  color: #ffffff;
}

.vl-blog-pagination a.page-numbers:hover {
  border-color: #b9141b;
  background: #b9141b;
  color: #ffffff;
}

.vl-blog-pagination a.page-numbers:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.vl-blog-pagination__sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* =========================================================
   Newsletter
========================================================= */

.vl-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;

  width: 100%;
  max-width: 700px;

  margin: 0;
}

.vl-newsletter-label {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

.vl-newsletter-input {
  flex: 1;

  min-width: 0;
  height: 48px;

  padding: 0 20px;

  border: 1px solid #e2e2e2;
  border-right: 0;
  border-radius: 3px 0 0 3px;

  background: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;

  color: #111111;

  outline: none;
}

.vl-newsletter-input::placeholder {
  color: #8a8a8a;
}

.vl-newsletter-input:focus {
  border-color: #d71920;
}

.vl-newsletter-submit {
  flex: 0 0 auto;

  min-width: 130px;
  height: 48px;

  padding: 0 24px;

  border: 1px solid #d71920;
  border-radius: 0 3px 3px 0;

  background: #d71920;

  color: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}

.vl-newsletter-submit:hover {
  background: #b9141b;
  border-color: #b9141b;
}

.vl-newsletter-status {
  flex: 0 0 100%;
  width: 100%;

  margin: 10px 0 0;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;

  color: #ffffff;
}

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

#header-logo img {
  display: block;

  width: 150px;
  height: auto;
}

/* =========================================================
   Trust Bar
========================================================= */

#trust-inner p {
  margin: 0;

  line-height: 1;

  transform: translateY(-3px);
}

/* =========================================================
   Services
========================================================= */

#services-cta {
  display: none;
}

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

#footer-brand .elementor-widget-text-editor p {
  margin-bottom: 0;
}

/* Preserve LOCKED Global Footer link colors on project-owned/dynamic templates. */
#footer-links a,
#footer-links a:visited,
#footer-legal a,
#footer-legal a:visited {
  color: #afafaf !important;
}

/* =========================================================
   Find Car
========================================================= */

.vl-mobile-break {
  display: none;
}

/* =========================================================
   Contact
========================================================= */

#contact-actions {
  display: flex;
  width: 100%;
  gap: 12px;
}

#contact-viber-wrap,
#contact-messenger-wrap {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

#contact-actions .vl-contact-action-button {
  align-self: stretch;
  width: 100% !important;
  max-width: none !important;
}

#contact-actions .vl-contact-action-button .elementor-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100% !important;
  max-width: none !important;
}

#contact-info-details .elementor-widget-text-editor p {
  margin: 0;
}

/* Contact Form */

.vl-contact-form .fluentform fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 16px;
}

/* Reset Fluent Forms default group spacing */
.vl-contact-form .ff-el-group {
  margin: 0;
  min-width: 0;
}

/* Row 1 */
.vl-contact-form .ff-el-group:has([name="vl_contact_full_name"]),
.vl-contact-form .ff-el-group:has([name="vl_contact_phone"]),

/* Row 2 */
.vl-contact-form .ff-el-group:has([name="vl_contact_email"]),
.vl-contact-form .ff-el-group:has([name="vl_contact_vehicle"]) {
  grid-column: span 1;
}

/* Full-width rows */
.vl-contact-form .ff-el-group:has([name="vl_contact_message"]),
.vl-contact-form .ff-el-group:has([name="vl_contact_privacy"]),
.vl-contact-form .vl-contact-submit-wrap {
  grid-column: 1 / -1;
}

/* Labels */
.vl-contact-form .ff-el-input--label {
  margin: 0 0 7px;
}

.vl-contact-form .ff-el-input--label label {
  margin: 0;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;

  color: #111111;
}

/* Required asterisk */
.vl-contact-form
  .ff-el-input--label.ff-el-is-required.asterisk-right
  label::after {
  color: #d71920;
}

/* Text / Email / Select */
.vl-contact-form input.ff-el-form-control,
.vl-contact-form select.ff-el-form-control {
  width: 100%;
  height: 44px;

  padding: 0 14px;

  border: 1px solid #d8d8d8;
  border-radius: 4px;

  background: #ffffff;

  color: #111111;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;

  box-shadow: none;
  outline: none;
}

/* Textarea */
.vl-contact-form textarea.ff-el-form-control {
  width: 100%;
  min-height: 92px;

  padding: 12px 14px;

  border: 1px solid #d8d8d8;
  border-radius: 4px;

  background: #ffffff;

  color: #111111;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;

  box-shadow: none;
  outline: none;

  resize: vertical;
}

/* Focus state */
.vl-contact-form input.ff-el-form-control:focus,
.vl-contact-form select.ff-el-form-control:focus,
.vl-contact-form textarea.ff-el-form-control:focus {
  border-color: #d71920;
  box-shadow: none;
}

/* GDPR */
.vl-contact-form .ff-el-group:has([name="vl_contact_privacy"]) {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;

  color: #555555;
}

.vl-contact-form .ff-el-group:has([name="vl_contact_privacy"]) p {
  margin: 0;
}

/* Fluent validation */
.vl-contact-form .error.text-danger,
.vl-contact-form .ff-el-is-error .text-danger {
  margin-top: 5px;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.4;

  color: #d71920;
}

.vl-contact-form select[name="vl_contact_vehicle"] {
  box-sizing: border-box;
  width: 100%;
  height: 44px !important;
  min-height: 44px !important;

  padding: 0 36px 0 14px;

  line-height: normal;
}

/* Contact Form Submit — exact reuse of LOCKED global CTA */

#contact-form-embed .vl-contact-submit-wrap {
  width: 100%;
}

#contact-form-embed .ff-btn-submit.vl-contact-submit:not(.ff_btn_no_style) {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100% !important;
  height: 46px;
  min-height: 46px;

  margin: 0;
  padding: 15px 20px;

  border: 0;
  border-radius: 30px;

  background-color: #d71a21;
  color: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;

  text-align: center;

  box-shadow: none;
  opacity: 1;

  cursor: pointer;

  transition: all 0.3s ease;
}

#contact-form-embed
  .ff-btn-submit.vl-contact-submit:not(.ff_btn_no_style):hover,
#contact-form-embed
  .ff-btn-submit.vl-contact-submit:not(.ff_btn_no_style):focus {
  background-color: #080808;
  color: #ffffff;

  border-color: transparent;
  box-shadow: none;
  opacity: 1;
}

#contact-form-embed
  .ff-btn-submit.vl-contact-submit:not(.ff_btn_no_style):focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

/* =========================================================
   Responsive - Tablet and Below
   <= 1024px
========================================================= */

@media (max-width: 1024px) {
  /* Featured Cars: 2 visible cards */

  .vl-car-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  /* Featured Cars: responsive arrows */

  .vl-cars-carousel .vl-cars-arrow {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;

    background: #ffffff;
    color: #d71920;

    border: 2px solid #d71920;
    border-radius: 50%;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  }

  .vl-cars-carousel .vl-cars-arrow--prev {
    left: 12px;
  }

  .vl-cars-carousel .vl-cars-arrow--next {
    right: 12px;
  }

  .vl-cars-carousel .vl-cars-arrow:hover:not(:disabled) {
    background: #d71920;
    border-color: #d71920;
    color: #ffffff;
  }

  .vl-cars-carousel .vl-cars-arrow:focus {
    background: #ffffff;

    border: 2px solid #d71920;
    border-radius: 50%;

    color: #d71920;
  }

  .vl-cars-carousel .vl-cars-arrow:focus-visible:not(:disabled) {
    background: #d71920;
    color: #ffffff;
  }

  .vl-cars-carousel .vl-cars-arrow:disabled {
    opacity: 0.4;
    box-shadow: none;
  }

  .vl-cars-carousel .vl-cars-arrow:disabled:hover,
  .vl-cars-carousel .vl-cars-arrow:disabled:focus {
    background: #ffffff;

    border: 2px solid #d71920;

    color: #d71920;
  }

  /* Header: responsive burger menu */

  #header-nav .hfe-nav-menu {
    justify-content: flex-end;
  }

  #header-nav .hfe-nav-menu__toggle {
    margin-left: auto;
    margin-right: 0;
  }

  #header-nav .hfe-nav-menu a {
    background: #ffffff;
    color: #111111;
  }

  #header-nav .hfe-nav-menu a:hover,
  #header-nav .hfe-nav-menu a:focus,
  #header-nav .hfe-nav-menu .current-menu-item > a {
    background: #ffffff;
    color: #d71920;
  }

  /* Cars Inventory: 2 columns */

  .vl-cars-inventory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Hero: equal CTA widths */

  #hero-buttons .elementor-button {
    width: 217px;
    justify-content: center;
  }
}

/* =========================================================
   Responsive - Mobile
   <= 767px
========================================================= */

@media (max-width: 767px) {
  /* Featured Cars: 1 visible card */

  .vl-cars-list {
    gap: 16px;
  }

  .vl-car-card {
    flex: 0 0 100%;
  }

  .vl-car-card__content {
    padding: 18px;
  }

  .vl-cars-carousel .vl-cars-arrow {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .vl-cars-carousel .vl-cars-arrow--prev {
    left: 10px;
  }

  .vl-cars-carousel .vl-cars-arrow--next {
    right: 10px;
  }

  /* Blog: stacked cards */

  .vl-blog-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Cars Inventory */

  .vl-cars-inventory__toolbar {
    align-items: flex-start;
    flex-direction: column;

    gap: 16px;

    margin-bottom: 24px;
  }

  .vl-cars-inventory__sort {
    width: 100%;
  }

  .vl-cars-inventory__sort select {
    flex: 1;

    min-width: 0;
    width: 100%;
  }

  .vl-cars-inventory__grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  /* Find Car: controlled supporting-text break */

  .vl-mobile-break {
    display: block;
  }

  /* Contact info rows — mobile */

  #contact-info-phone-row,
  #contact-info-email-row,
  #contact-info-address-row,
  #contact-info-hours-row {
    flex-wrap: nowrap;
    align-items: center;
  }

  #contact-info-phone-text,
  #contact-info-email-text,
  #contact-info-address-text,
  #contact-info-hours-text {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
  }

  /* Why Us - Process: mobile steps alignment */
  #why-process-steps {
    padding-left: 44px;
    box-sizing: border-box;
  }
}

@media (min-width: 441px) and (max-width: 767px) {
  #why-process-steps {
    padding-left: calc(44px + ((100% - 440px) / 2));
  }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .vl-cars-list,
  .vl-car-card,
  .vl-car-card__image img,
  .vl-car-card__link::after,
  .vl-cars-carousel .vl-cars-arrow,
  .vl-blog-card,
  .vl-blog-card__image img,
  .vl-blog-card__title,
  .vl-blog-card__link {
    transition: none;
  }
}

/* =========================================================
   Newsletter Anti-Spam
========================================================= */

.vl-newsletter-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
