/**
 * MotoLox Homepage V2 — MOS-007 Sprint 1 / 1.1 / 3
 */

:root {
  --ml-primary: #09448b;
  --ml-primary-dark: #0a1c31;
  --ml-accent: #c9a227;
  --ml-accent-light: #f5e6a8;
  --ml-bg: #f4f6f9;
  --ml-white: #ffffff;
  --ml-text: #1a1a2e;
  --ml-text-muted: #5a6270;
  --ml-border: #dde2ea;
  --ml-success: #198754;
  --ml-warning: #e67e22;
  --ml-info: #0891b2;
  --ml-danger-ad: #c0392b;
  --ml-whatsapp: #25d366;
  --ml-star: #f5b301;
}

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

body.ml-home {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ml-text);
  background: var(--ml-bg);
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  body.ml-home {
    padding-bottom: 0;
  }
}

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

.ml-home a {
  text-decoration: none;
  color: inherit;
}

.ml-home .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .ml-home .wrap {
    padding: 0 24px;
  }
}

/* Buttons */
.ml-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
}

.ml-home .btn--gold {
  background: var(--ml-accent);
  color: var(--ml-primary-dark);
}

.ml-home .btn--gold:hover {
  filter: brightness(1.06);
}

.ml-home .btn--blue {
  background: var(--ml-primary);
  color: #fff;
}

.ml-home .btn--blue:hover {
  background: var(--ml-primary-dark);
}

.ml-home .btn--wa {
  background: var(--ml-whatsapp);
  color: #fff;
}

.ml-home .btn--wa:hover {
  filter: brightness(1.05);
}

.ml-home .btn--outline {
  background: transparent;
  border-color: var(--ml-primary);
  color: var(--ml-primary);
}

.ml-home .btn--white-outline {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.ml-home .btn--block {
  width: 100%;
}

.ml-home .btn--xl {
  min-height: 56px;
  font-size: 16px;
}

/* Header */
.ml-home .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ml-white);
  border-bottom: 1px solid var(--ml-border);
  height: 56px;
  box-shadow: 0 2px 12px rgba(10, 28, 49, .06);
}

.ml-home .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 56px;
}

.ml-home .header__logo img {
  height: 38px;
}

.ml-home .header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.ml-home .header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ml-text-muted);
  transition: background 150ms, color 150ms;
  white-space: nowrap;
}

.ml-home .header__link:hover {
  background: var(--ml-bg);
  color: var(--ml-primary);
}

.ml-home .header__link--active {
  color: var(--ml-primary);
  background: #e8eef5;
  font-weight: 700;
}

.ml-home .header__cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ml-home .header {
    height: 64px;
  }

  .ml-home .header__inner {
    height: 64px;
  }

  .ml-home .header__logo img {
    height: 44px;
  }

  .ml-home .header__nav {
    display: flex;
  }

  .ml-home .header__cta {
    display: inline-flex;
    font-size: 14px;
    min-height: 44px;
  }
}

/* Hero */
.ml-home .hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ml-home .hero {
    min-height: 640px;
    align-items: center;
  }
}

.ml-home .hero__img {
  position: absolute;
  inset: 0;
}

.ml-home .hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-home .hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 28, 49, 0.95) 0%,
    rgba(10, 28, 49, 0.75) 40%,
    rgba(10, 28, 49, 0.45) 100%
  );
}

.ml-home .hero__body {
  position: relative;
  z-index: 1;
  padding: 48px 0 40px;
  width: 100%;
}

.ml-home .hero__mission {
  display: inline-block;
  background: rgba(201, 162, 39, 0.25);
  color: var(--ml-accent-light);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.ml-home .hero__h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  max-width: 520px;
}

@media (min-width: 768px) {
  .ml-home .hero__h1 {
    font-size: 52px;
  }
}

.ml-home .hero__h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ml-accent);
  margin-bottom: 20px;
  max-width: 480px;
}

@media (min-width: 768px) {
  .ml-home .hero__h2 {
    font-size: 28px;
  }
}

.ml-home .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ml-home .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

.ml-home .chip i {
  color: var(--ml-accent);
}

.ml-home .chip--green i {
  color: #6ee7a0;
}

.ml-home .chip--orange i {
  color: #fdba74;
}

.ml-home .chip--blue i {
  color: #67e8f9;
}

.ml-home .hero__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .ml-home .hero__btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Ad banners */
.ml-home .ad-strip {
  padding: 12px 0;
}

.ml-home .ad-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ml-home .ad-banner::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.ml-home .ad-banner--red {
  background: linear-gradient(135deg, #922b21, var(--ml-danger-ad));
}

.ml-home .ad-banner--green {
  background: linear-gradient(135deg, #0d6e3f, var(--ml-success));
}

.ml-home .ad-banner--blue {
  background: linear-gradient(135deg, var(--ml-primary-dark), var(--ml-primary));
}

.ml-home .ad-banner--gold {
  background: linear-gradient(135deg, #96781a, var(--ml-accent));
  color: var(--ml-primary-dark);
}

.ml-home .ad-banner--purple {
  background: linear-gradient(135deg, #4a235a, #7d3c98);
}

.ml-home .ad-banner--gold .ad-banner__icon {
  opacity: 0.25;
}

.ml-home .ad-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .ml-home .ad-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.ml-home .ad-banner__text {
  position: relative;
  z-index: 1;
}

.ml-home .ad-banner__big {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .ml-home .ad-banner__big {
    font-size: 28px;
  }
}

.ml-home .ad-banner__small {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.ml-home .ad-banner__icon {
  font-size: 48px;
  opacity: 0.35;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Section */
.ml-home .sec-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .ml-home .sec-title {
    font-size: 32px;
  }
}

.ml-home .sec-title__count {
  font-size: 0.72em;
  font-weight: 700;
  color: var(--ml-primary);
  white-space: nowrap;
}

.ml-home .sec-sub {
  font-size: 14px;
  color: var(--ml-text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.ml-home .section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .ml-home .section {
    padding: 64px 0;
  }
}

.ml-home .section--white {
  background: var(--ml-white);
}

/* Reusable horizontal carousel */
.ml-carousel {
  position: relative;
}

.ml-carousel__viewport {
  position: relative;
}

.ml-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.ml-carousel__track::-webkit-scrollbar {
  display: none;
}

.ml-carousel__fade {
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 56px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ml-carousel__fade.is-visible {
  opacity: 1;
}

.ml-carousel__fade--left {
  left: 0;
}

.ml-carousel__fade--right {
  right: 0;
}

.ml-carousel[data-fade="white"] .ml-carousel__fade--left {
  background: linear-gradient(to right, var(--ml-white), rgba(255, 255, 255, 0));
}

.ml-carousel[data-fade="white"] .ml-carousel__fade--right {
  background: linear-gradient(to left, var(--ml-white), rgba(255, 255, 255, 0));
}

.ml-carousel[data-fade="surface"] .ml-carousel__fade--left {
  background: linear-gradient(to right, var(--ml-bg), rgba(244, 246, 249, 0));
}

.ml-carousel[data-fade="surface"] .ml-carousel__fade--right {
  background: linear-gradient(to left, var(--ml-bg), rgba(244, 246, 249, 0));
}

.ml-carousel__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ml-border);
  border-radius: 50%;
  background: var(--ml-white);
  color: var(--ml-primary);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 28, 49, 0.12);
  cursor: pointer;
}

.ml-carousel__nav:hover {
  background: var(--ml-primary);
  color: #fff;
}

@media (min-width: 768px) {
  .ml-carousel__nav:not([hidden]) {
    display: flex;
  }
}

.ml-carousel__nav--prev {
  left: -8px;
}

.ml-carousel__nav--next {
  right: -8px;
}

@media (min-width: 992px) {
  .ml-carousel__nav--prev {
    left: -20px;
  }

  .ml-carousel__nav--next {
    right: -20px;
  }
}

/* Vehicle cards */
.ml-carousel__track .v-card,
.ml-home .v-card {
  flex: 0 0 92%;
  scroll-snap-align: center;
  background: var(--ml-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 28, 49, 0.12);
  border: 1px solid var(--ml-border);
}

@media (min-width: 600px) {
  .ml-carousel__track .v-card,
  .ml-home .v-card {
    flex: 0 0 55%;
  }
}

@media (min-width: 900px) {
  .ml-carousel__track .v-card,
  .ml-home .v-card {
    flex: 0 0 38%;
  }
}

@media (min-width: 1100px) {
  .ml-carousel__track .v-card,
  .ml-home .v-card {
    flex: 0 0 30%;
  }
}

.ml-home .v-card__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ml-home .v-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-home .v-card__price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--ml-primary-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 800;
}

.ml-home .v-card__price-tag--request {
  font-size: 14px;
  padding: 8px 12px;
}

.ml-home .v-card__emi-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--ml-accent);
  color: var(--ml-primary-dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

.ml-home .v-card__emi-tag span {
  display: block;
  font-size: 11px;
  font-weight: 600;
}

.ml-home .v-card__body {
  padding: 16px;
}

.ml-home .v-card__name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ml-home .v-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.ml-home .v-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ml-home .v-badge--dp {
  background: #fef3e7;
  color: var(--ml-warning);
}

.ml-home .v-badge--int {
  background: #e0f7fa;
  color: var(--ml-info);
}

.ml-home .v-badge--cb {
  background: #e8f5e9;
  color: var(--ml-success);
}

.ml-home .v-badge--war {
  background: #e8eef5;
  color: var(--ml-primary);
}

.ml-home .v-card__rule {
  font-size: 11px;
  color: var(--ml-text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
  padding: 8px;
  background: var(--ml-bg);
  border-radius: 6px;
  border-left: 3px solid var(--ml-accent);
}

.ml-home .v-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ml-home .btn--calc {
  background: var(--ml-bg);
  color: var(--ml-primary);
  border: 2px dashed var(--ml-primary);
  font-size: 14px;
  min-height: 44px;
}

.ml-home .v-calc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e4fd8 0%, #6b21a8 100%);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(30, 79, 216, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.ml-home .v-calc-card:hover {
  box-shadow: 0 14px 32px rgba(30, 79, 216, 0.36);
  filter: brightness(1.04);
}

.ml-home .v-calc-card:active {
  transform: scale(0.985);
  box-shadow: 0 6px 16px rgba(30, 79, 216, 0.24);
}

.ml-home .v-calc-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.ml-home .v-calc-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ml-home .v-calc-card__emoji {
  font-size: 26px;
  line-height: 1;
}

.ml-home .v-calc-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ml-home .v-calc-card__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.ml-home .v-calc-card__subtitle {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.92;
}

.ml-home .v-calc-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 180ms ease;
}

.ml-home .v-calc-card:hover .v-calc-card__arrow {
  transform: translateX(2px);
}

@media (hover: none) {
  .ml-home .v-calc-card:hover {
    filter: none;
    box-shadow: 0 10px 24px rgba(30, 79, 216, 0.28);
  }

  .ml-home .v-calc-card:hover .v-calc-card__arrow {
    transform: none;
  }
}

/* Calculator panel */
.ml-home .calc-panel {
  margin-top: 12px;
  border: 2px solid var(--ml-primary);
  border-radius: 12px;
  overflow: hidden;
}

.ml-home .calc-panel summary {
  list-style: none;
  cursor: pointer;
}

.ml-home .calc-panel summary::-webkit-details-marker {
  display: none;
}

.ml-home .calc-panel[open] summary {
  display: none;
}

.ml-home .calc-panel__inner {
  padding: 16px;
  background: #f0f4fa;
}

.ml-home .calc-panel__head {
  font-size: 14px;
  font-weight: 800;
  color: var(--ml-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ml-home .calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--ml-border);
  font-size: 13px;
}

.ml-home .calc-row:last-child {
  border-bottom: none;
}

.ml-home .calc-row__val {
  font-weight: 800;
  color: var(--ml-primary);
  font-size: 15px;
}

.ml-home .calc-opt {
  background: var(--ml-white);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  border-left: 4px solid var(--ml-warning);
}

.ml-home .calc-opt--b {
  border-left-color: var(--ml-info);
}

.ml-home .calc-opt__title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ml-home .calc-opt__emi {
  font-size: 26px;
  font-weight: 800;
  color: var(--ml-primary);
}

.ml-home .calc-opt__emi small {
  font-size: 13px;
  font-weight: 600;
  color: var(--ml-text-muted);
}

.ml-home .calc-total {
  background: var(--ml-primary-dark);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin: 12px 0;
}

.ml-home .calc-total__label {
  font-size: 11px;
  opacity: 0.8;
}

.ml-home .calc-total__val {
  font-size: 22px;
  font-weight: 800;
  color: var(--ml-accent);
}

.ml-home .calc-note {
  font-size: 11px;
  color: var(--ml-text-muted);
  text-align: center;
  margin: 10px 0;
  line-height: 1.4;
}

.ml-home .featured-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--ml-text-muted);
  font-size: 15px;
}

/* Footer */
.ml-home .footer {
  background: var(--ml-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 32px 0 24px;
  text-align: center;
}

.ml-home .footer__mission {
  font-size: 16px;
  font-weight: 700;
  color: var(--ml-accent);
  margin-bottom: 12px;
}

.ml-home .footer__addr {
  font-size: 13px;
  margin-bottom: 8px;
}

.ml-home .footer__phone {
  color: var(--ml-accent);
}

.ml-home .footer__copy {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 16px;
}

/* Why MotoLox comparison */
.ml-home .vs-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .ml-home .vs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ml-home .vs-col {
  border-radius: 16px;
  padding: 24px 20px;
  border: 2px solid var(--ml-border);
}

.ml-home .vs-col--bad {
  background: #f8f9fa;
}

.ml-home .vs-col--good {
  background: linear-gradient(160deg, #eef3fa, #fdf8e8);
  border-color: var(--ml-primary);
  box-shadow: 0 4px 20px rgba(9, 68, 139, 0.12);
}

.ml-home .vs-col__head {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ml-border);
}

.ml-home .vs-col--good .vs-col__head {
  color: var(--ml-primary);
  border-color: var(--ml-primary);
}

.ml-home .vs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ml-home .vs-item:last-child {
  margin-bottom: 0;
}

.ml-home .vs-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ml-home .vs-col--bad .vs-item__icon {
  background: #eee;
  color: #aaa;
}

.ml-home .vs-col--good .vs-item__icon {
  background: rgba(9, 68, 139, 0.1);
  color: var(--ml-primary);
}

.ml-home .vs-item__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.ml-home .vs-item__text small {
  display: block;
  font-weight: 400;
  color: var(--ml-text-muted);
  font-size: 12px;
  margin-top: 2px;
}

/* Trust icons */
.ml-home .trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .ml-home .trust-row {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ml-home .trust-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--ml-white);
  border-radius: 12px;
  border: 1px solid var(--ml-border);
}

.ml-home .trust-item__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  background: rgba(9, 68, 139, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ml-primary);
}

.ml-home .trust-item__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

/* Customer stories */
.ml-carousel__track .story-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: var(--ml-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ml-border);
  box-shadow: 0 2px 12px rgba(10, 28, 49, 0.08);
}

@media (min-width: 768px) {
  .ml-carousel__track .story-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .ml-carousel__track .story-card {
    flex: 0 0 32%;
  }
}

.ml-home .story-card__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 140px;
}

.ml-home .story-card__before,
.ml-home .story-card__after {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.ml-home .story-card__before {
  background: #eceff1;
}

.ml-home .story-card__after {
  background: linear-gradient(135deg, var(--ml-primary), #1565c0);
  color: #fff;
}

.ml-home .story-card__before i,
.ml-home .story-card__after i {
  font-size: 32px;
  margin-bottom: 6px;
}

.ml-home .story-card__before span,
.ml-home .story-card__after span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ml-home .story-card__after i {
  color: var(--ml-accent);
}

.ml-home .story-card__body {
  padding: 16px;
}

.ml-home .story-card__person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ml-home .story-card__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ml-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.ml-home .story-card__name {
  font-size: 15px;
  font-weight: 700;
}

.ml-home .story-card__car {
  font-size: 12px;
  color: var(--ml-text-muted);
}

.ml-home .story-card__quote {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ml-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ml-home .story-card__stars {
  color: var(--ml-star);
  font-size: 12px;
  margin-top: 8px;
}

/* Contact section */
.ml-home .contact-big {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .ml-home .contact-big {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ml-home .contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  transition: transform 150ms;
}

.ml-home .contact-btn:hover {
  transform: scale(1.02);
}

.ml-home .contact-btn i {
  font-size: 36px;
}

.ml-home .contact-btn--wa {
  background: var(--ml-whatsapp);
}

.ml-home .contact-btn--call {
  background: var(--ml-primary);
}

.ml-home .contact-btn--visit {
  background: var(--ml-accent);
  color: var(--ml-primary-dark);
}

.ml-home .contact-help {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ml-primary);
}

/* Sticky mobile bar */
.ml-home .sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--ml-white);
  border-top: 2px solid var(--ml-border);
  box-shadow: 0 -4px 16px rgba(10, 28, 49, 0.1);
}

@media (min-width: 768px) {
  .ml-home .sticky-bar {
    display: none;
  }
}

/* MOS-007 Sprint 3 — Calculator modal */
body.ml-modal-open {
  overflow: hidden;
}

.ml-home .ml-modal[hidden] {
  display: none;
}

.ml-home .ml-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ml-home .ml-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 49, 0.55);
  animation: ml-modal-fade-in 200ms ease-out;
}

.ml-home .ml-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 92vh;
  background: var(--ml-white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 40px rgba(10, 28, 49, 0.18);
  display: flex;
  flex-direction: column;
  animation: ml-modal-slide-up 260ms ease-out;
}

.ml-home .ml-modal__handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--ml-border);
  margin: 10px auto 0;
}

.ml-home .ml-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 8px;
}

.ml-home .ml-modal__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ml-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ml-home .ml-modal__subtitle {
  font-size: 13px;
  color: var(--ml-text-muted);
  margin-top: 4px;
}

.ml-home .ml-modal__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--ml-bg);
  color: var(--ml-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.ml-home .ml-modal__body {
  padding: 8px 16px 20px;
  overflow-y: auto;
}

.ml-home .calc-opt__note {
  font-size: 11px;
  color: var(--ml-text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

.ml-home .calc-header {
  display: flex;
  gap: 14px;
  padding: 14px;
  margin-bottom: 12px;
  background: var(--ml-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 35, 102, 0.08);
}

.ml-home .calc-header__photo {
  flex-shrink: 0;
  width: 88px;
  height: 66px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ml-bg);
}

.ml-home .calc-header__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-home .calc-header__meta {
  flex: 1;
  min-width: 0;
}

.ml-home .calc-header__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ml-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ml-home .calc-header__emi .calc-row__val {
  color: var(--ml-accent);
}

/* MOS-012 — Saving Calculator V1.0 */
.ml-home .calc-section {
  background: var(--ml-white);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 35, 102, 0.08);
}

.ml-home .calc-section__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ml-primary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ml-home .calc-section__subheading {
  font-size: 14px;
  font-weight: 700;
  color: var(--ml-text);
  margin: 0 0 12px;
  line-height: 1.45;
}

.ml-home .calc-section--vehicle .calc-header {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ml-home .calc-section--benefit {
  border-left: 4px solid var(--ml-accent);
}

.ml-home .calc-section--results {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ml-home .calc-section--compare {
  padding: 0;
  overflow: hidden;
}

.ml-home .calc-section--cta {
  background: transparent;
  border: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ml-home .calc-slider-block__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ml-text-muted);
  margin-bottom: 6px;
}

.ml-home .calc-slider-block__readout {
  font-size: 18px;
  font-weight: 800;
  color: var(--ml-primary);
  margin-bottom: 10px;
}

.ml-home .calc-slider-block__readout--accent {
  color: var(--ml-accent);
  font-size: 22px;
}

.ml-home .calc-slider {
  width: 100%;
  accent-color: var(--ml-primary);
  cursor: pointer;
}

.ml-home .calc-slider--benefit {
  accent-color: var(--ml-accent);
}

.ml-home .calc-row--result .calc-row__val {
  color: var(--ml-accent);
}

.ml-home .calc-value {
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.ml-home .calc-value.is-updating {
  opacity: 0.55;
  transform: translateY(-1px);
}

.ml-home .calc-value--highlight {
  font-weight: 800;
}

.ml-home .calc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ml-home .calc-compare__col {
  padding: 14px 12px;
}

.ml-home .calc-compare__col--motolox {
  background: #f0f7ff;
  border-left: 1px solid rgba(0, 35, 102, 0.08);
}

.ml-home .calc-compare__title {
  font-size: 12px;
  font-weight: 800;
  color: var(--ml-primary);
  margin-bottom: 10px;
  text-align: center;
}

.ml-home .calc-compare .calc-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 0;
}

.ml-home .calc-compare .calc-row__val {
  font-size: 14px;
}

@media (min-width: 768px) {
  .ml-home .ml-modal {
    align-items: center;
    padding: 24px;
  }

  .ml-home .ml-modal__sheet {
    width: min(520px, 100%);
    max-height: min(88vh, 760px);
    border-radius: 16px;
    animation: ml-modal-scale-in 220ms ease-out;
  }

  .ml-home .ml-modal__handle {
    display: none;
  }

  .ml-home .ml-modal__header {
    padding: 20px 20px 8px;
  }

  .ml-home .ml-modal__body {
    padding: 8px 20px 24px;
  }
}

@keyframes ml-modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ml-modal-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes ml-modal-scale-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOS-019 — Eligibility modal form + success state */
.ml-home .ml-form-field {
  margin-bottom: 16px;
}

.ml-home .ml-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ml-text);
}

.ml-home .ml-form-input {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--ml-border);
  border-radius: 10px;
  padding: 0 14px;
  font: inherit;
  color: var(--ml-text);
  background: var(--ml-white);
}

.ml-home .ml-form-input:focus {
  outline: none;
  border-color: var(--ml-primary);
  box-shadow: 0 0 0 3px rgba(9, 68, 139, 0.12);
}

.ml-home .ml-form-input[aria-invalid="true"] {
  border-color: var(--ml-danger-ad);
}

.ml-home .ml-form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ml-primary) 50%), linear-gradient(135deg, var(--ml-primary) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.ml-home .ml-form-error {
  font-size: 12px;
  color: var(--ml-danger-ad);
  margin-top: 6px;
}

.ml-home .ml-eligibility__success {
  text-align: center;
  padding: 12px 0 4px;
}

.ml-home .ml-eligibility__success-icon {
  font-size: 56px;
  color: var(--ml-success);
  margin-bottom: 12px;
}

.ml-home .ml-eligibility__success-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ml-home .ml-eligibility__success-text {
  font-size: 15px;
  color: var(--ml-text-muted);
  line-height: 1.6;
}

/* MOS-019 — Global eligibility modal */
.ml-home .ml-eligibility-modal__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ml-home .ml-eligibility-modal__step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--ml-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-text-muted);
  background: var(--ml-white);
}

.ml-home .ml-eligibility-modal__step.is-active {
  border-color: var(--ml-primary);
  color: var(--ml-white);
  background: var(--ml-primary);
}

.ml-home .ml-eligibility-modal__step.is-complete {
  border-color: var(--ml-primary);
  color: var(--ml-primary);
  background: rgba(26, 115, 232, 0.08);
}

.ml-home .ml-eligibility-modal__step-line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: var(--ml-border);
}

.ml-home .ml-eligibility-modal__legend {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ml-text);
}

.ml-home .ml-eligibility-modal__panel {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.ml-home .ml-eligibility-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.ml-home .ml-eligibility-modal__form-error {
  margin-bottom: 12px;
}

.ml-home .btn--ghost {
  background: transparent;
  color: var(--ml-text);
  border: 1px solid var(--ml-border);
}

.ml-home .sticky-bar a,
.ml-home .sticky-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ml-text);
  min-height: 56px;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.ml-home .sticky-bar a i,
.ml-home .sticky-bar button i {
  font-size: 20px;
}

.ml-home .sticky-bar a:nth-child(1),
.ml-home .sticky-bar button:nth-child(1) {
  color: var(--ml-primary);
}

.ml-home .sticky-bar a:nth-child(2),
.ml-home .sticky-bar button:nth-child(2) {
  color: var(--ml-whatsapp);
}

.ml-home .sticky-bar a:nth-child(3),
.ml-home .sticky-bar button:nth-child(3) {
  color: var(--ml-primary);
}

/* --------------------------------------------------------------------------
   Browse Cars V2 — MOS-015 Sprint 01 (extends ml-home tokens; no card duplication)
   -------------------------------------------------------------------------- */

.ml-browse .wrap--wide {
  max-width: 1440px;
}

.ml-browse .browse-hero {
  position: relative;
  color: #fff;
  padding: 32px 0 40px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .ml-browse .browse-hero {
    min-height: 480px;
    align-items: center;
    padding: 48px 0;
  }
}

.ml-browse .browse-hero__bg {
  position: absolute;
  inset: 0;
}

.ml-browse .browse-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-browse .browse-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 28, 49, .94) 0%, rgba(9, 68, 139, .88) 45%, rgba(26, 90, 158, .82) 100%);
}

.ml-browse .browse-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(201, 162, 39, .2) 0%, transparent 45%);
  pointer-events: none;
}

.ml-browse .browse-hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
}

.ml-browse .browse-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 16px;
  opacity: .85;
}

.ml-browse .browse-breadcrumb span {
  opacity: .5;
}

.ml-browse .browse-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, .22);
  border: 1px solid rgba(201, 162, 39, .45);
  color: var(--ml-accent-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ml-browse .browse-hero__h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  max-width: 640px;
  letter-spacing: -.02em;
}

@media (min-width: 768px) {
  .ml-browse .browse-hero__h1 {
    font-size: 44px;
  }
}

.ml-browse .browse-hero__sub {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 20px;
  max-width: 560px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ml-browse .browse-hero__sub {
    font-size: 18px;
  }
}

.ml-browse .hero-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 960px;
}

@media (min-width: 640px) {
  .ml-browse .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.ml-browse .hero-trust__card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.ml-browse .hero-trust__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ml-browse .hero-trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ml-browse .hero-trust__icon--dp {
  background: rgba(230, 126, 34, .25);
  color: #f5c896;
}

.ml-browse .hero-trust__icon--int {
  background: rgba(8, 145, 178, .25);
  color: #7dd3e8;
}

.ml-browse .hero-trust__icon--cb {
  background: rgba(25, 135, 84, .25);
  color: #86efac;
}

.ml-browse .hero-trust__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.ml-browse .hero-trust__text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  line-height: 1.45;
}

@media (min-width: 768px) {
  .ml-browse .hero-trust__title {
    font-size: 15px;
  }

  .ml-browse .hero-trust__text {
    font-size: 13px;
  }
}

.ml-browse .browse-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}

@media (min-width: 640px) {
  .ml-browse .browse-search {
    flex-direction: row;
  }
}

.ml-browse .browse-search__field {
  flex: 1;
  position: relative;
}

.ml-browse .browse-search__field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ml-text-muted);
}

.ml-browse .browse-search__input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 46px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  background: var(--ml-white);
  color: var(--ml-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.ml-browse .browse-search__input:disabled {
  opacity: .75;
  cursor: not-allowed;
}

.ml-browse .browse-search__btn:disabled {
  opacity: .75;
  cursor: not-allowed;
}

.ml-browse .inventory-highlights {
  background: var(--ml-white);
  border-bottom: 1px solid var(--ml-border);
  padding: 28px 0;
}

.ml-browse .inventory-highlights__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ml-primary-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ml-browse .inventory-highlights__title i {
  color: var(--ml-accent);
}

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

@media (min-width: 600px) {
  .ml-browse .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .ml-browse .stat-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.ml-browse .stat-card {
  background: linear-gradient(160deg, #fff 0%, var(--ml-bg) 100%);
  border: 1px solid var(--ml-border);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}

.ml-browse .stat-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ml-browse .stat-card__icon--cars {
  background: #e8eef5;
  color: var(--ml-primary);
}

.ml-browse .stat-card__icon--dp {
  background: #fef3e7;
  color: var(--ml-warning);
}

.ml-browse .stat-card__icon--cb {
  background: #e8f5e9;
  color: var(--ml-success);
}

.ml-browse .stat-card__icon--war {
  background: #e0f7fa;
  color: var(--ml-info);
}

.ml-browse .stat-card__icon--emi {
  background: #fdf8e8;
  color: var(--ml-accent);
}

.ml-browse .stat-card__val {
  font-size: 20px;
  font-weight: 800;
  color: var(--ml-primary-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}

.ml-browse .stat-card__val--placeholder {
  color: var(--ml-text-muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ml-browse .stat-card__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ml-text-muted);
  line-height: 1.3;
}

.ml-browse .inventory-highlights__note {
  font-size: 11px;
  font-weight: 600;
  color: var(--ml-text-muted);
  margin-top: 12px;
  text-align: center;
}

.ml-browse .browse-discovery {
  background: var(--ml-bg);
  border-bottom: 1px solid var(--ml-border);
  padding: 20px 0;
}

.ml-browse .browse-discovery__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ml-browse .browse-discovery__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.ml-browse .browse-discovery__scroll::-webkit-scrollbar {
  display: none;
}

.ml-browse .disc-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--ml-white);
  border: 2px solid var(--ml-border);
  color: var(--ml-text);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(10, 28, 49, .04);
  font-family: inherit;
}

.ml-browse .disc-chip:disabled {
  opacity: .85;
  cursor: not-allowed;
}

.ml-browse .disc-chip__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: var(--ml-bg);
  color: var(--ml-primary);
}

.ml-browse .disc-chip__icon--orange {
  color: var(--ml-warning);
}

.ml-browse .disc-chip__icon--green {
  color: var(--ml-success);
}

.ml-browse .disc-chip__icon--blue {
  color: var(--ml-info);
}

.ml-browse .disc-chip__icon--gold {
  color: var(--ml-star);
}

.ml-browse .browse-main {
  padding: 24px 0 48px;
}

.ml-browse .browse-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.ml-browse .filter-sidebar {
  display: none;
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  background: var(--ml-white);
  border: 1px solid var(--ml-border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(10, 28, 49, .06);
}

@media (min-width: 992px) {
  .ml-browse .filter-sidebar {
    display: block;
  }
}

.ml-browse .filter-group {
  border-bottom: 1px solid var(--ml-border);
}

.ml-browse .filter-group:last-child {
  border-bottom: none;
}

.ml-browse .filter-group__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ml-text);
  text-align: left;
  font-family: inherit;
}

.ml-browse .filter-group__body {
  padding: 0 12px 14px;
}

.ml-browse .filter-group:not(.is-open) .filter-group__body {
  display: none;
}

.ml-browse .filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.ml-browse .filter-range {
  width: 100%;
  margin: 8px 0;
  accent-color: var(--ml-primary);
}

.ml-browse .filter-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ml-text-muted);
  font-weight: 600;
}

.ml-browse .browse-content {
  flex: 1;
  min-width: 0;
}

.ml-browse .browse-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ml-browse .filter-mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--ml-border);
  background: var(--ml-white);
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-primary);
  font-family: inherit;
}

@media (min-width: 992px) {
  .ml-browse .filter-mobile-btn {
    display: none;
  }
}

.ml-browse .filter-mobile-btn:disabled {
  opacity: .75;
  cursor: not-allowed;
}

.ml-browse .browse-sort {
  min-height: 44px;
  padding: 0 36px 0 14px;
  border-radius: 10px;
  border: 1px solid var(--ml-border);
  background: var(--ml-white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ml-text);
  appearance: none;
}

.ml-browse .browse-sort:disabled {
  opacity: .75;
  cursor: not-allowed;
}

.ml-browse .browse-results-bar {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--ml-white);
  border: 1px solid var(--ml-border);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(10, 28, 49, .04);
}

.ml-browse .browse-results-bar__count {
  font-size: 15px;
  font-weight: 800;
  color: var(--ml-primary-dark);
}

.ml-browse .browse-results-bar__count strong {
  color: var(--ml-primary);
}

.ml-browse .browse-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .ml-browse .browse-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {
  .ml-browse .browse-vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ml-browse .browse-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--ml-white);
  border: 1px solid var(--ml-border);
  border-radius: 16px;
}

.ml-browse .browse-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ml-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--ml-primary);
}

.ml-browse .browse-empty__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ml-primary-dark);
}

.ml-browse .browse-empty__sub {
  font-size: 14px;
  color: var(--ml-text-muted);
}

.ml-browse .browse-pagination-wrap {
  margin-top: 32px;
  text-align: center;
}

.ml-browse .browse-pagination-note {
  font-size: 12px;
  color: var(--ml-text-muted);
  margin-bottom: 12px;
}

.ml-browse .browse-pagination {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ml-browse .page-btn {
  min-height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--ml-border);
  background: var(--ml-white);
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-text);
  font-family: inherit;
}

.ml-browse .page-btn.is-active {
  background: var(--ml-primary);
  border-color: var(--ml-primary);
  color: #fff;
}

.ml-browse .page-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.ml-browse .advisor-cta {
  margin-top: 40px;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ml-primary-dark) 0%, var(--ml-primary) 100%);
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .ml-browse .advisor-cta {
    padding: 40px 48px;
  }
}

.ml-browse .advisor-cta__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ml-browse .advisor-cta__sub {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 24px;
}

.ml-browse .advisor-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .ml-browse .advisor-cta__btns {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .ml-browse .advisor-cta__btns .btn {
    min-width: 160px;
  }
}

.ml-browse .future-strip {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--ml-border);
}

.ml-browse .future-strip__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ml-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  text-align: center;
}

.ml-browse .future-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .ml-browse .future-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ml-browse .future-card {
  background: var(--ml-white);
  border: 1px dashed var(--ml-border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  opacity: .85;
}

.ml-browse .future-card__icon {
  font-size: 28px;
  color: var(--ml-primary);
  margin-bottom: 10px;
  opacity: .5;
}

.ml-browse .future-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ml-text-muted);
  margin-bottom: 8px;
}

.ml-browse .future-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ml-bg);
  color: var(--ml-text-muted);
}

.ml-browse .drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 28, 49, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms;
  display: none;
}

.ml-browse .drawer-overlay.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.ml-browse .filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  width: min(100%, 360px);
  background: var(--ml-white);
  transform: translateX(100%);
  transition: transform 280ms ease;
  display: flex;
  flex-direction: column;
}

.ml-browse .filter-drawer.is-open {
  transform: translateX(0);
}

.ml-browse .filter-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ml-border);
  font-weight: 800;
}

.ml-browse .filter-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ml-text-muted);
  font-family: inherit;
}

.ml-browse .filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}

.ml-browse .filter-drawer__foot {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--ml-border);
}

.ml-browse .filter-drawer__foot .btn {
  flex: 1;
}

.ml-browse .browse-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--ml-white);
  border-top: 2px solid var(--ml-border);
  box-shadow: 0 -4px 16px rgba(10, 28, 49, .1);
}

@media (min-width: 768px) {
  .ml-browse .browse-sticky-bar {
    display: none;
  }
}

.ml-browse .browse-sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 4px;
  font-size: 10px;
  font-weight: 700;
  min-height: 56px;
}

.ml-browse .browse-sticky-bar a:nth-child(1) {
  color: var(--ml-primary);
}

.ml-browse .browse-sticky-bar a:nth-child(2) {
  color: var(--ml-whatsapp);
}

.ml-browse .browse-sticky-bar a:nth-child(3) {
  color: var(--ml-accent);
}

.ml-browse .browse-sticky-bar a i {
  font-size: 18px;
}

.ml-browse .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;
}

.ml-browse .browse-filter-form__actions {
  padding: 12px 8px 4px;
}

.ml-browse .filter-note {
  font-size: 11px;
  color: var(--ml-text-muted);
  line-height: 1.45;
  padding-top: 8px;
}

.ml-browse .filter-check input {
  accent-color: var(--ml-primary);
  width: 16px;
  height: 16px;
}

.ml-browse .active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 14px 18px;
  background: var(--ml-white);
  border: 1px solid var(--ml-border);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(10, 28, 49, .04);
}

.ml-browse .active-filters__count {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--ml-primary-dark);
  padding-right: 12px;
  margin-right: 4px;
  border-right: 2px solid var(--ml-border);
}

.ml-browse .active-filters__count strong {
  color: var(--ml-primary);
}

.ml-browse .active-filters__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.ml-browse .filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3fa;
  border: 1px solid rgba(9, 68, 139, .15);
  font-size: 12px;
  font-weight: 600;
  color: var(--ml-primary);
  text-decoration: none;
}

.ml-browse .filter-pill:hover {
  background: #dfeaf8;
}

.ml-browse .filter-pill span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ml-primary);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ml-browse .clear-all {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-warning);
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.ml-browse .clear-all:hover {
  background: #fef3e7;
}

.ml-browse a.disc-chip {
  text-decoration: none;
  color: inherit;
}

.ml-browse a.disc-chip.is-active {
  background: var(--ml-primary);
  border-color: var(--ml-primary);
  color: #fff;
}

.ml-browse a.disc-chip.is-active .disc-chip__icon {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.ml-browse .browse-empty__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

@media (min-width: 480px) {
  .ml-browse .browse-empty__btns {
    flex-direction: row;
  }
}

.ml-browse .browse-pagination a.page-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ml-browse .page-btn.is-disabled {
  opacity: .5;
  pointer-events: none;
}

.ml-browse .browse-sort-form {
  margin: 0;
}

/* Vehicle Details V2 — MOS-018 Sprint 01 (.ml-detail) */
.ml-detail { padding-bottom: 68px; }
@media (min-width: 992px) { .ml-detail { padding-bottom: 0; } }
.ml-detail .detail-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; padding: 16px 0 0; color: var(--ml-text-muted); }
.ml-detail .detail-breadcrumb a { color: var(--ml-primary); font-weight: 600; }
.ml-detail .detail-breadcrumb [aria-current="page"] { color: var(--ml-text); font-weight: 700; }
.ml-detail .detail-hero { padding: 16px 0 24px; }
@media (min-width: 992px) { .ml-detail .detail-hero__grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; } }
.ml-detail .detail-gallery { background: var(--ml-white); border-radius: 16px; overflow: hidden; border: 1px solid var(--ml-border); box-shadow: 0 8px 32px rgba(10,28,49,.08); }
.ml-detail .detail-gallery__main { position: relative; aspect-ratio: 16/10; background: #111; touch-action: pan-y; user-select: none; }
@media (min-width: 768px) { .ml-detail .detail-gallery__main { aspect-ratio: 16/9; } }
.ml-detail .detail-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.ml-detail .detail-gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ml-primary-dark); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.ml-detail .detail-gallery__nav--prev { left: 12px; }
.ml-detail .detail-gallery__nav--next { right: 12px; }
.ml-detail .detail-gallery__counter { position: absolute; bottom: 16px; left: 16px; z-index: 3; padding: 8px 14px; border-radius: 999px; background: rgba(10,28,49,.82); color: #fff; font-size: 13px; font-weight: 700; }
.ml-detail .detail-gallery__thumbs-wrap { display: flex; align-items: center; border-top: 1px solid var(--ml-border); }
.ml-detail .detail-gallery__thumb-nav { flex: 0 0 36px; height: 78px; display: flex; align-items: center; justify-content: center; color: var(--ml-primary); border: none; background: linear-gradient(90deg, var(--ml-white) 60%, transparent); cursor: pointer; }
.ml-detail .detail-gallery__thumb-nav--next { background: linear-gradient(270deg, var(--ml-white) 60%, transparent); }
.ml-detail .detail-gallery__thumbs { display: flex; gap: 8px; padding: 12px 4px; overflow-x: auto; flex: 1; scroll-behavior: smooth; }
.ml-detail .detail-gallery__thumb { flex: 0 0 72px; height: 54px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; opacity: .7; padding: 0; cursor: pointer; background: none; }
@media (min-width: 768px) { .ml-detail .detail-gallery__thumb { flex: 0 0 88px; height: 66px; } }
.ml-detail .detail-gallery__thumb.is-active { border-color: var(--ml-accent); opacity: 1; }
.ml-detail .detail-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ml-detail .detail-summary { background: var(--ml-white); border-radius: 16px; border: 1px solid var(--ml-border); padding: 20px; box-shadow: 0 8px 32px rgba(10,28,49,.06); margin-top: 20px; }
@media (min-width: 992px) { .ml-detail .detail-summary { margin-top: 0; position: sticky; top: 88px; padding: 22px; } }
.ml-detail .detail-summary__avail { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--ml-success); background: #e8f5e9; padding: 5px 10px; border-radius: 999px; margin-bottom: 10px; }
.ml-detail .detail-summary__avail i { font-size: 7px; }
.ml-detail .detail-summary__name { font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; color: var(--ml-primary-dark); }
@media (min-width: 768px) { .ml-detail .detail-summary__name { font-size: 26px; } }
.ml-detail .detail-summary__price { font-size: 28px; font-weight: 800; color: var(--ml-primary); margin-bottom: 2px; }
.ml-detail .detail-summary__emi { font-size: 14px; font-weight: 600; color: var(--ml-text-muted); margin-bottom: 14px; }
.ml-detail .detail-summary__rule { font-size: 12px; color: var(--ml-text-muted); margin: 0 0 14px; line-height: 1.4; }
.ml-detail .detail-summary__comm { display: flex; gap: 8px; margin-bottom: 14px; }
.ml-detail .detail-summary__comm-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 40px; border-radius: 10px; border: 1px solid var(--ml-border); background: var(--ml-bg); font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }
.ml-detail .detail-summary__comm-btn.is-active { color: #e74c3c; border-color: #f5c6cb; background: #fff5f5; }
.ml-detail .detail-summary__advisor { margin-top: 14px; padding: 14px; border-radius: 12px; border: 1px solid var(--ml-border); background: linear-gradient(180deg, #f8fafc 0%, var(--ml-bg) 100%); }
.ml-detail .detail-summary__advisor-title { font-size: 14px; font-weight: 800; color: var(--ml-primary-dark); margin-bottom: 4px; }
.ml-detail .detail-summary__advisor-sub { font-size: 12px; color: var(--ml-text-muted); margin-bottom: 10px; }
.ml-detail .detail-summary__advisor-list { list-style: none; margin-bottom: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 8px; }
.ml-detail .detail-summary__advisor-list li { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.ml-detail .detail-summary__advisor-list i { color: var(--ml-success); font-size: 10px; }
.ml-detail .detail-summary__advisor-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ml-detail .btn--sm { min-height: 40px; padding: 0 10px; font-size: 12px; }
.ml-detail .detail-section__sub { font-size: 14px; color: var(--ml-text-muted); margin-bottom: 24px; }
.ml-detail .detail-highlights-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 576px) { .ml-detail .detail-highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ml-detail .detail-highlights-grid { grid-template-columns: repeat(4, 1fr); } }
.ml-detail .detail-highlight-card { background: var(--ml-white); border: 1px solid var(--ml-border); border-radius: 14px; padding: 22px 18px; text-align: center; box-shadow: 0 4px 20px rgba(10,28,49,.05); }
.ml-detail .detail-highlight-card__icon { font-size: 36px; margin-bottom: 12px; }
.ml-detail .detail-highlight-card__title { font-size: 15px; font-weight: 800; color: var(--ml-primary-dark); margin-bottom: 6px; }
.ml-detail .detail-highlight-card__desc { font-size: 13px; color: var(--ml-text-muted); }
.ml-detail .detail-trust-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 576px) { .ml-detail .detail-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ml-detail .detail-trust-grid { grid-template-columns: repeat(3, 1fr); } }
.ml-detail .detail-trust-card { background: var(--ml-white); border: 1px solid var(--ml-border); border-radius: 14px; padding: 22px 18px; box-shadow: 0 4px 20px rgba(10,28,49,.05); }
.ml-detail .detail-trust-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(9,68,139,.08); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ml-primary); margin-bottom: 12px; }
.ml-detail .detail-trust-card__title { font-size: 15px; font-weight: 800; color: var(--ml-primary-dark); margin-bottom: 6px; }
.ml-detail .detail-trust-card__desc { font-size: 13px; color: var(--ml-text-muted); line-height: 1.45; }
.ml-detail .detail-spec-wrap { background: var(--ml-white); border: 1px solid var(--ml-border); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(10,28,49,.05); }
.ml-detail .detail-spec-tabs { display: flex; gap: 4px; padding: 12px 12px 0; overflow-x: auto; border-bottom: 1px solid var(--ml-border); background: var(--ml-bg); }
.ml-detail .detail-spec-tabs__btn { flex: 0 0 auto; padding: 10px 16px; border-radius: 10px 10px 0 0; font-size: 13px; font-weight: 700; color: var(--ml-text-muted); white-space: nowrap; border: none; background: transparent; cursor: pointer; font-family: inherit; }
.ml-detail .detail-spec-tabs__btn.is-active { background: var(--ml-white); color: var(--ml-primary-dark); box-shadow: 0 -2px 0 var(--ml-accent) inset; }
.ml-detail .detail-spec-panel { display: none; padding: 20px 16px 8px; animation: ml-detail-tab-in 220ms ease; }
.ml-detail .detail-spec-panel.is-active { display: block; }
.ml-detail .detail-spec-panel[hidden] { display: none !important; }
.ml-detail .detail-spec-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 576px) { .ml-detail .detail-spec-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ml-detail .detail-spec-cards { grid-template-columns: repeat(3, 1fr); } }
.ml-detail .detail-spec-card { padding: 16px; border-radius: 12px; border: 1px solid var(--ml-border); background: var(--ml-bg); }
.ml-detail .detail-spec-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--ml-text-muted); margin-bottom: 6px; }
.ml-detail .detail-spec-card__val { font-size: 15px; font-weight: 700; color: var(--ml-primary-dark); }
.ml-detail .detail-spec-note { font-size: 12px; color: var(--ml-text-muted); margin: 16px; padding-top: 16px; border-top: 1px dashed var(--ml-border); display: flex; gap: 8px; }
.ml-detail .detail-similar-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 576px) { .ml-detail .detail-similar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ml-detail .detail-similar-grid { grid-template-columns: repeat(4, 1fr); } }
.ml-detail .advisor-cta { margin: 32px 0; padding: 36px 24px; border-radius: 16px; background: linear-gradient(135deg, var(--ml-primary-dark) 0%, var(--ml-primary) 100%); color: #fff; text-align: center; }
.ml-detail .advisor-cta__title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.ml-detail .advisor-cta__sub { font-size: 14px; opacity: .9; margin-bottom: 24px; }
.ml-detail .advisor-cta__btns { display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: center; }
@media (min-width: 480px) { .ml-detail .advisor-cta__btns { flex-direction: row; } }
.ml-detail .advisor-cta__form,
.ml-browse .advisor-cta__form { margin: 24px auto 0; max-width: 640px; text-align: left; }
.ml-detail .advisor-cta__form-title,
.ml-browse .advisor-cta__form-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; opacity: .95; }
.ml-detail .advisor-cta__form-grid,
.ml-browse .advisor-cta__form-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 8px; }
@media (min-width: 640px) {
  .ml-detail .advisor-cta__form-grid,
  .ml-browse .advisor-cta__form-grid { grid-template-columns: 1fr 1fr auto; align-items: stretch; }
}
.ml-detail .advisor-cta__form input,
.ml-detail .advisor-cta__form textarea,
.ml-browse .advisor-cta__form input,
.ml-browse .advisor-cta__form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #0a1c31;
}
.ml-detail .advisor-cta__form textarea,
.ml-browse .advisor-cta__form textarea { resize: vertical; min-height: 64px; }
.ml-detail .sr-only,
.ml-browse .sr-only,
.advisor-cta .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;
}
.ml-detail .detail-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; padding: 10px 16px; background: var(--ml-white); border-top: 1px solid var(--ml-border); box-shadow: 0 -4px 20px rgba(10,28,49,.1); }
@media (min-width: 992px) { .ml-detail .detail-sticky-cta { display: none; } }

/* MOS-018 Sprint 03 — interactions */
.ml-detail .detail-gallery__zoom { display: block; width: 100%; height: 100%; padding: 0; border: none; background: none; cursor: zoom-in; }
.ml-detail .detail-gallery__zoom img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ml-detail .detail-gallery__main:focus-visible { outline: 2px solid var(--ml-accent); outline-offset: 2px; }
.ml-detail .detail-gallery.is-single-photo .detail-gallery__nav,
.ml-detail .detail-lightbox.is-single-photo .detail-lightbox__nav { display: none; }
.ml-detail .detail-summary__advisor-btns:has(.btn:only-child) { grid-template-columns: 1fr; }
.ml-detail .detail-gallery__main img { transition: opacity 220ms ease; }
.ml-detail .detail-gallery__main img.is-fading { opacity: 0.35; }
.ml-detail .detail-gallery__nav:focus-visible,
.ml-detail .detail-gallery__thumb-nav:focus-visible,
.ml-detail .detail-gallery__thumb:focus-visible,
.ml-detail .detail-summary__comm-btn:focus-visible,
.ml-detail .detail-spec-tabs__btn:focus-visible,
.ml-detail .detail-share-menu__opt:focus-visible,
.ml-detail .detail-share-overlay__close:focus-visible,
.ml-detail .detail-lightbox__close:focus-visible,
.ml-detail .detail-lightbox__nav:focus-visible { outline: 2px solid var(--ml-accent); outline-offset: 2px; }
.ml-detail .detail-summary__comm-btn { transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.ml-detail .detail-summary__comm-btn:hover { background: #eef4fb; border-color: #c9d8ea; }
.ml-detail .detail-summary__comm-btn.is-active { animation: ml-detail-wish-pop 280ms ease; }
.ml-detail .detail-summary__comm-btn.is-loading { opacity: 0.65; pointer-events: none; }
.ml-detail .detail-spec-tabs__btn { transition: color 180ms ease, background 180ms ease, box-shadow 220ms ease; }
.ml-detail .detail-highlight-card,
.ml-detail .detail-trust-card { transition: transform 200ms ease, box-shadow 200ms ease; }
.ml-detail .detail-highlight-card:hover,
.ml-detail .detail-trust-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,28,49,.08); }
.ml-detail .detail-similar-grid .v-card { transition: transform 200ms ease, box-shadow 200ms ease; }
.ml-detail .detail-similar-grid .v-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(10,28,49,.12); }
.ml-detail .detail-share-overlay,
.ml-detail .detail-lightbox { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 16px; }
.ml-detail .detail-share-overlay[hidden],
.ml-detail .detail-lightbox[hidden] { display: none; }
.ml-detail .detail-share-overlay__backdrop,
.ml-detail .detail-lightbox__backdrop { position: absolute; inset: 0; background: rgba(10,28,49,.58); opacity: 0; transition: opacity 220ms ease; }
.ml-detail .detail-share-overlay.is-open .detail-share-overlay__backdrop,
.ml-detail .detail-lightbox.is-open .detail-lightbox__backdrop { opacity: 1; }
.ml-detail .detail-share-overlay__panel { position: relative; width: min(420px, 100%); background: var(--ml-white); border-radius: 16px; padding: 24px 20px 20px; box-shadow: 0 24px 48px rgba(10,28,49,.18); transform: translateY(12px) scale(0.98); opacity: 0; transition: transform 240ms ease, opacity 240ms ease; }
.ml-detail .detail-share-overlay.is-open .detail-share-overlay__panel { transform: translateY(0) scale(1); opacity: 1; }
.ml-detail .detail-share-overlay__close,
.ml-detail .detail-lightbox__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: none; border-radius: 999px; background: var(--ml-bg); color: var(--ml-primary-dark); cursor: pointer; }
.ml-detail .detail-share-menu__title { font-size: 18px; font-weight: 800; margin-bottom: 16px; text-align: center; color: var(--ml-primary-dark); }
.ml-detail .detail-share-menu__options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 8px; }
.ml-detail .detail-share-menu__opt { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--ml-border); background: var(--ml-bg); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 150ms ease, border-color 150ms ease, transform 150ms ease; }
.ml-detail .detail-share-menu__opt:hover { background: #e8eef5; border-color: var(--ml-primary); transform: translateY(-1px); }
.ml-detail .detail-share-menu__opt--wa i { color: var(--ml-whatsapp, #25D366); }
.ml-detail .detail-share-menu__preview { margin-top: 16px; padding: 16px; border-radius: 12px; background: #e8f8ef; border: 1px solid #bbf7d0; text-align: left; }
.ml-detail .detail-share-menu__preview-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #128C7E; margin-bottom: 8px; letter-spacing: .04em; }
.ml-detail .detail-share-menu__preview-text { margin: 0; font-family: inherit; font-size: 13px; line-height: 1.6; white-space: pre-wrap; color: var(--ml-text); background: transparent; border: none; }
.ml-detail .detail-lightbox__dialog { position: relative; width: min(1100px, 100%); max-height: calc(100vh - 32px); display: flex; align-items: center; justify-content: center; }
.ml-detail .detail-lightbox__figure { margin: 0; width: 100%; text-align: center; }
.ml-detail .detail-lightbox__img { max-width: 100%; max-height: calc(100vh - 120px); object-fit: contain; border-radius: 12px; transition: opacity 220ms ease; }
.ml-detail .detail-lightbox__img.is-fading { opacity: 0.35; }
.ml-detail .detail-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ml-primary-dark); cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.ml-detail .detail-lightbox__nav--prev { left: 8px; }
.ml-detail .detail-lightbox__nav--next { right: 8px; }
.ml-detail .detail-lightbox__counter { display: inline-block; margin-top: 12px; padding: 8px 14px; border-radius: 999px; background: rgba(10,28,49,.82); color: #fff; font-size: 13px; font-weight: 700; }
.ml-detail .detail-toast { position: fixed; left: 50%; bottom: 88px; transform: translate(-50%, 12px); z-index: 500; padding: 12px 18px; border-radius: 999px; background: var(--ml-primary-dark); color: #fff; font-size: 13px; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity 220ms ease, transform 220ms ease; box-shadow: 0 8px 24px rgba(10,28,49,.2); }
@media (min-width: 992px) { .ml-detail .detail-toast { bottom: 24px; } }
.ml-detail .detail-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.ml-detail .detail-toast--error { background: #b42318; }
body.ml-detail-share-open,
body.ml-detail-lightbox-open { overflow: hidden; }
@keyframes ml-detail-wish-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@keyframes ml-detail-tab-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

