:root {
  --mm-primary: #ff6b00;
  --mm-primary-hover: #e65a00;
  --mm-dark: #092053; /* Updated to requested deep navy */
  --mm-text: #5E5E5E; /* Updated to requested general text color */
  --mm-gray-50: #f8f9fa;
  --mm-gray-100: #f1f3f5;
  --mm-gray-200: #e9ecef;
  --mm-gray-300: #dee2e6;
  --mm-gray-400: #ced4da;
  --mm-gray-500: #adb5bd;
  --mm-gray-600: #6c757d;
  --mm-gray-700: #495057;
  --mm-gray-800: #343a40;
  --mm-white: #ffffff;
  --mm-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --mm-shadow: 0 8px 24px rgba(0,0,0,0.08);
  --mm-shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --mm-radius: 10px;
  --mm-font-main: 'Roboto', sans-serif;
  --mm-font-heading: 'Roboto Slab', serif;
  --mm-btn-view-bg: #092053;
  --mm-btn-save-bg: #31FFFF;
}

body {
  background-color: #fcfcfc;
  margin: 0;
  padding: 0;
  color: var(--mm-text); /* Applied general text color */
}

.mm-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 24px;
  font-family: var(--mm-font-main);
  color: var(--mm-text); /* Applied general text color */
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mm-font-heading);
  font-weight: 900;
  color: var(--mm-dark); /* Applied primary heading color */
  margin-top: 0;
}

a {
  color: var(--mm-dark); /* Applied primary anchor color */
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}



/* Hero Section */
.mm-hero {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-white);
  margin-bottom: 0;
}

.mm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.mm-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}

.mm-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 0 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mm-white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mm-hero-search {
  background: var(--mm-white);
  padding: 12px;
  border-radius: 100px;
  display: flex;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 800px;
  margin: 0 auto;
}

.mm-hero-search input {
  flex-grow: 1;
  border: none;
  padding: 15px 35px;
  font-size: 1.25rem;
  border-radius: 100px;
  color: var(--mm-dark);
  font-weight: 400;
}

.mm-hero-search button {
  background: var(--mm-primary);
  color: var(--mm-white);
  border: none;
  padding: 15px 50px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mm-hero-search button:hover {
  background: var(--mm-primary-hover);
  transform: scale(1.02);
}

/* Tabs */
.mm-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: -35px auto 50px;
  position: relative;
  z-index: 10;
  background: var(--mm-white);
  width: fit-content;
  padding: 0 40px;
  border-radius: 100px;
  box-shadow: var(--mm-shadow);
}

.mm-tab {
  padding: 25px 0;
  font-weight: 900;
  font-size: 1rem;
  color: var(--mm-gray-500);
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mm-tab:hover {
  color: var(--mm-dark);
}

.mm-tab.active {
  color: var(--mm-primary);
  border-bottom-color: var(--mm-primary);
}

.mm-tab span {
  font-weight: 400;
  font-size: 0.875rem;
  margin-left: 5px;
  opacity: 0.6;
}

/* Top Filters */
.mm-top-filters {
  background: #f2f5fb;
  border-bottom: 1px solid #d9dfec;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

.mm-top-filters.is-active {
  max-height: 500px; /* Large enough to contain filters */
  padding: 20px 0;
  opacity: 1;
  visibility: visible;
}

.mm-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.mm-filter-item {
  flex: 1;
  min-width: 150px;
}

.mm-filter-item.mm-search-input {
  flex: 2;
  min-width: 250px;
}

.mm-filter-item.mm-price-inputs {
  display: flex;
  gap: 8px;
  flex: 1.5;
  min-width: 200px;
}

.mm-filter-item.mm-search-btn {
  flex: 0 0 auto;
  min-width: 120px;
}

.mm-filter-item.mm-clear-btn {
  flex: 0 0 auto;
}

.mm-filter-bar select,
.mm-filter-bar input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d1d9e6;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 6px;
  color: #333;
  transition: all 0.2s ease;
}

.mm-filter-bar select:focus,
.mm-filter-bar input:focus {
  border-color: #092053;
  outline: none;
  box-shadow: 0 0 0 3px rgba(9, 32, 83, 0.1);
}

.mm-filter-bar .mm-btn-primary {
  width: 100%;
  background: #092053;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mm-filter-bar .mm-btn-primary:hover {
  background: #ff6b00;
}

.mm-btn-clear {
  color: #5E5E5E;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 12px 0;
}

.mm-btn-clear:hover {
  color: #092053;
}

/* Condition Tabs */
.mm-sub-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  gap: 20px;
  flex-wrap: wrap;
}

.mm-condition-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.mm-condition-tab {
  font-size: 16px;
  font-weight: 500;
  color: #5E5E5E;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.mm-condition-tab:hover {
  color: #092053;
}

.mm-condition-tab.active {
  color: #092053;
  font-weight: 700;
  border-bottom-color: #31FFFF;
}

/* Results Header Bar */
.mm-results-header-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  flex-wrap: wrap;
}

.mm-filter-toggle-wrap {
  margin-right: auto;
}

.mm-btn-toggle {
  background: #fff;
  border: 1px solid #d1d9e6;
  padding: 8px 15px;
  border-radius: 6px;
  color: #092053;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.mm-btn-toggle:hover {
  background: #f2f5fb;
  border-color: #092053;
}

.mm-btn-toggle.is-active {
  background: #092053;
  color: #fff;
}

.mm-results-count {
  font-size: 24px;
  font-weight: 700;
  color: #092053;
  white-space: nowrap;
}

.mm-count-number {
  color: #092053;
}

.mm-results-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mm-results-sort label {
  font-size: 14px;
  font-weight: 700;
  color: #5E5E5E;
  text-transform: uppercase;
  white-space: nowrap;
}

.mm-results-sort select {
  padding: 8px 12px;
  border: 1px solid #d1d9e6;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  color: #333;
}

/* Responsive Filters */
@media (max-width: 767px) {
  .mm-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .mm-filter-item, 
  .mm-filter-item.mm-search-input, 
  .mm-filter-item.mm-price-inputs {
    width: 100%;
    min-width: 0;
  }

  .mm-filter-item.mm-clear-btn {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .mm-sub-filter-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .mm-condition-tabs {
    width: 100%;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
  }

  .mm-results-header-bar {
    width: 100%;
    justify-content: space-between;
  }

  .mm-results-count {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .mm-results-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .mm-results-sort {
    width: 100%;
    justify-content: space-between;
  }

  .mm-results-sort select {
    flex-grow: 1;
    max-width: 200px;
  }
}

/* Layout Adjustment */
.mm-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.mm-sidebar {
  display: block;
}

.mm-related .mm-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Share Dropdown */
.mm-share-wrap {
  position: relative;
  display: inline-block;
  width: 49%;
}

.mm-share-wrap .mm-btn-share {
  width: 100%;
}

.mm-share-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #d1d9e6;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 200px;
  display: none;
  z-index: 100;
  margin-bottom: 10px;
  padding: 10px 0;
}

.mm-share-dropdown.is-active {
  display: block;
}

.mm-share-dropdown a.mm-share-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: #092053;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.mm-share-dropdown a.mm-share-item:hover {
  background: #f2f5fb;
  opacity: 1;
}

.mm-share-dropdown .mm-share-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-share-dropdown .mm-share-icon svg {
  width: 20px;
  height: 20px;
}

.mm-share-dropdown .mm-share-label {
  flex: 1;
}

.mm-share-dropdown .mm-share-fb .mm-share-icon {
  color: #1877f2;
}

.mm-share-dropdown .mm-share-tw .mm-share-icon {
  color: #000;
}

.mm-share-dropdown .mm-share-li .mm-share-icon {
  color: #0a66c2;
}

.mm-share-dropdown .mm-share-reddit .mm-share-icon {
  color: #ff4500;
}

.mm-share-dropdown .mm-share-tumblr .mm-share-icon {
  color: #35465c;
}

.mm-share-dropdown .mm-share-wa .mm-share-icon {
  color: #25d366;
}

.mm-share-dropdown .mm-share-tg .mm-share-icon {
  color: #26a5e4;
}

.mm-share-dropdown .mm-copy-link .mm-share-icon {
  color: #5e5e5e;
}

/* Grid & Cards */
.mm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mm-card {
  padding: 15px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mm-card-image img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.mm-card-content h3 {
  font-size: 18px;
  margin: 10px 0;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mm-card-pricing-grid {
  background: #f8f9fb;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.mm-card-actions {
  gap: 10px;
}

.mm-card .mm-btn-save,
.mm-card .mm-btn-view {
  padding: 10px;
  font-size: 13px;
}

.mm-card {
  background: var(--mm-white);
  border: 1px solid var(--mm-gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  /*box-shadow: 0 10px 30px rgba(0,0,0,0.04);*/
}

.mm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mm-card-image {
  position: relative;
  aspect-ratio: 16 / 10.4;
}

.mm-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--mm-primary);
  color: var(--mm-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.mm-card .mm-card-content {
  padding: 5px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mm-card-categories {
  font-size: 0.8125rem;
  color: var(--mm-gray-500);
  margin-bottom: 12px;
  font-weight: 500;
}

.mm-card .mm-card-content h3 {
  font-family: var(--mm-font-heading);
  font-size: 1.5rem;
  margin: 0 0 25px;
  line-height: 1.3;
}

.mm-card .mm-card-content h3 a {
  color: var(--mm-dark);
  text-decoration: none;
}

.mm-card-specs {
  margin-bottom: 24px;
}

.mm-card-spec {
  margin-bottom: 10px;
  font-size: 0.9375rem;
  display: flex;
  gap: 6px;
}

.mm-card-spec .mm-label {
  color: var(--mm-gray-600);
  font-weight: 400;
}

.mm-card-spec .mm-value {
  color: var(--mm-dark);
  font-weight: 700;
}

.mm-card-pricing-grid {
  background: var(--mm-gray-50);
  margin: 0 -24px 24px;
  padding: 24px;
  border-top: 1px solid var(--mm-gray-200);
  border-bottom: 1px solid var(--mm-gray-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mm-price-block, .mm-finance-block {
  display: flex;
  flex-direction: column;
}

.mm-price-block svg,
.mm-finance-block svg {
  cursor: pointer;
  vertical-align: -0.15em;
  margin-inline-start: 0.2em;
}

.mm-price-block .mm-label, .mm-finance-block .mm-label {
  font-size: 0.8125rem;
  color: var(--mm-gray-600);
  text-transform: none;
  font-weight: 500;
  margin-bottom: 6px;
}

.mm-price-block .mm-value {
  font-family: var(--mm-font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--mm-dark);
  line-height: 1;
}

.mm-finance-block .mm-value {
  color: var(--mm-primary);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.mm-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: auto;
}

.mm-card .mm-btn-save {
  background: var(--mm-btn-save-bg);
  border: none;
  color: #000000;
  padding: 14px;
  border-radius: 100px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mm-card .mm-btn-save:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

a.mm-btn-save {
  text-decoration: none;
  box-sizing: border-box;
}

.mm-btn-save.mm-btn-save-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.mm-sidebar .mm-header-actions > a.mm-btn-save {
  width: 49%;
  border: none;
  background: #eff3fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 8px;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.mm-sidebar .mm-header-actions > a.mm-btn-save:hover {
  background: #31ffff;
  color: #092053;
}

.mm-card .mm-btn-view {
  background: var(--mm-btn-view-bg);
  color: var(--mm-white);
  padding: 14px;
  border-radius: 100px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.mm-card .mm-btn-view:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Pagination */
#mm-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

#mm-pagination .page-numbers {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mm-gray-200);
  border-radius: 50%;
  text-decoration: none;
  color: var(--mm-dark);
  font-weight: 700;
  transition: all 0.2s;
}

#mm-pagination .page-numbers.current {
  background: var(--mm-primary);
  border-color: var(--mm-primary);
  color: var(--mm-white);
}

/* Single Vehicle */
.mm-single-layout {
  display: flex;
  gap: 50px;
}
.mm-inr-brb{
    max-width: 1440px;
    margin: 0 auto;
}
nav.mm-breadcrumb {
    padding: 20px 10px;
    background: #f2f5fb;
    border-bottom:1px solid #d9dfec;
}

.mm-vehicle-header-section h1 {
  font-family: var(--mm-font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--mm-dark);
}

.mm-header-price-block .mm-value {
  font-family: var(--mm-font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--mm-dark);
}

.mm-header-finance-block strong {
  color: var(--mm-primary);
}

.mm-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mm-main-content .mm-details-section h3 {
    font-size: 35px;
    font-weight: 700;
    color: #092053;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: block;
    border-bottom:1px solid #b7c7d7;
}

/*.mm-details-section h3::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: -10px;*/
/*  left: 0;*/
/*  width: 80px;*/
/*  height: 6px;*/
/*  background: var(--mm-primary);*/
/*  border-radius: 100px;*/
/*}*/

.mm-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mm-white);
  padding: 25px 35px;
  border-radius: 18px;
  border: 1px solid var(--mm-gray-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: var(--mm-primary);
}

.mm-spec-label {
  font-size: 0.9375rem;
  color: var(--mm-gray-500);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mm-spec-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--mm-dark);
}

.mm-gallery-featured img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--mm-shadow);
}

.mm-gallery-thumbs img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s;
}

.mm-gallery-thumbs img:hover {
  transform: scale(1.05);
}

.mm-dealer-sidebar, .mm-enquiry-box {
  background: var(--mm-white);
  border: 1px solid var(--mm-gray-200);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--mm-shadow-sm);
}

.mm-enquiry-box h4 {
  margin-bottom: 25px;
}

.mm-form-group input, .mm-form-group textarea {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--mm-gray-200);
  background: var(--mm-gray-50);
  font-size: 1rem;
  transition: all 0.2s;
}

.mm-form-group input:focus, .mm-form-group textarea:focus {
  outline: none;
  border-color: var(--mm-primary);
  background: var(--mm-white);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
.mm-results-header .mm_toptext{
    display: flex;
  flex-direction: row;
    align-items: center;
    gap: 24px;
}
.mm-results-header .mm_toptext h2{
    font-size: 29px;
      font-weight: 700;
      line-height: 34px;
}
.mm-results-header .mm_toptext .mm-inner{
    border-left:4px solid #31FFFF;
    padding-left: 32px;
}
.mm-results-header .mm_toptext .mm-inner h4{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.mm-results-header .mm_toptext .mm-inner p{
    font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.mm-card{
    padding: 12px;
    border-color: #e0e0e0;
    background: #fff;
    border-radius: 12px;
}
.mm-card-image img{
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.mm-card .mm-card-content .mm-card-categories{
    font-size: 14px;
    font-weight: 500;
    color: #5E5E5E;
    margin: 0 0 5px;
}
.mm-card .mm-card-content h3{
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 20px;
    color: #092053;
    margin-bottom: 15px;
}
.mm-results-summary{
    padding-bottom:8px;
    font-size:18px;
    line-height:27px;
    font-weight:500;
    text-align: right;
    margin: 0;
}
.clsDetails p {
    font-size: 10px;
    font-weight: 400;
    text-transform: none;
    color: #5e5e5e;
    padding: 0 0 4px;
    margin: 0;
}
.mm-card-specs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0 18px;
}
.mm-card-specs .mm-card-spec {
    flex-direction: column;
    gap: 0;
    margin: 0;
}
.mm-card-specs .mm-card-spec span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
        color: #5e5e5e;
}
.mm-card-pricing-grid{
    padding: 10px 0;
    margin: 0;
    border-color: #dedede;
}
.mm-card-pricing-grid > div.mm-price-block {
    border-right: 1px solid #dedede;
}
.mm-card-pricing-grid svg {
    fill: #898989;
    width: 14px;
    margin-left: 5px;
}
.mm-card-pricing-grid > div span.mm-label {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
    color: #092053;
}
.mm-card-pricing-grid > div  span.mm-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1em;
    color: #092053;
}
.mm-card-pricing-grid > div span.mm-value.mm-pv{
    color: #0927eb;
}
.mm-card-pricing-grid > div  span.mm-week-txt{
    font-size: 16px;
    line-height: 16px;
    display: inline-block !important;
    padding: 7px 0 0;
}
.mm-card-actions{
    margin:20px 0 0;
}
.mm-card-content .mm-card-actions button, .mm-card-actions a.mm-btn-view, .mm-card-actions a.mm-btn-save{
    border-radius: 10px;
    border:1px solid #092053;
}
.mm-card-content .mm-card-actions button.mm-btn-save, .mm-card-content .mm-card-actions a.mm-btn-save{
     border-color: #31ffff;
}
.mm-card-content .mm-card-actions button.mm-btn-save:hover, .mm-card-content .mm-card-actions a.mm-btn-save:hover, .mm-card-actions a.mm-btn-view:hover{
    border-color: #092053;
    color: #092053;
    background: #09205300;
}
.mm-card-image img {
    max-height: 200px;
    object-fit: cover;
    transition: 0.5s all;
    transform: scale(1);
}
.mm-card-image img:hover{
    transform: scale(1.04);
    transition: 0.5s all;
}
/*#mm-pagination a.page-numbers, #mm-pagination span {*/
/*    display: none !important;*/
/*}*/
#mm-pagination .page-numbers.current{
    background: #31ffff;
    border-color: #092053;
    color: #092053;
}
#mm-pagination a.prev, #mm-pagination a.next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--mm-gray-200);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--mm-dark);
    transition: all 0.2s;
}

#mm-pagination a.prev:hover, #mm-pagination a.next:hover {
    background: var(--mm-gray-100);
    border-color: var(--mm-dark);
}
.mm-sidebar select, .mm-sidebar input, .mm-sidebar textarea{
    border: 1px solid #dddddd;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
    width: 100%;
    transition: all 0.2s ease;
}
.mm-sidebar select {
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto;
    background-image: url('data:image/svg+xml;utf8,<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23092053" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    appearance: none;
}
.mm-sidebar select:focus, .mm-sidebar input:focus, .mm-sidebar textarea:focus {
    outline: none;
    border-color: var(--mm-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.mm-actions a.mm-btn-reset {
    border-radius: 7px;
    font-weight: 500;
    color: #092053;
    border: 1px solid #092053;
    padding: 8px 0;
    font-size: 17px;
}
.mm-actions a.mm-btn-reset:hover {
    color: #fff;
    background-color: #092053;
}
.mm-related{
    margin-top:30px;
}
.mm-related h3{
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0px;
    border-bottom: 1px solid #b7c7d7;
}
.mm-related .mm-grid {
    grid-template-columns: repeat(3, 1fr);
}
.mm-related .mm-grid .mm-card-image {
    aspect-ratio: auto;
}
.mm-single-layout .mm-main-content{
    width: 73%;
}
.mm-single-layout .mm-sidebar{
    width: 25%;
}
.mm-related .mm-card-image img {
    min-height: 270px;
}

/* Single dealer page only: stock grid 3 columns on desktop */
@media (min-width: 993px) {
  body.single-dealers #mm-results-grid.mm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*header*/
header.mm-head {
    background: #092053;
    padding: 0 15px;
}
header.mm-head .mm-topHeader ul {
    padding: 4px 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
header.mm-head .mm-topHeader ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
header.mm-head .mm-topHeader ul li.menu-item {
    color: antiquewhite;
    list-style: none;
    padding: 0 8px;
}
header.mm-head .mm-mainHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
header.mm-head .mm-mainHeader > div {
    width: 33.33%;
}
header.mm-head .mm-mainHeader a img {
    max-width: 250px;
}
header.mm-head .mm-mainHeader nav ul li {
    list-style: none;
}
header.mm-head .mm-mainHeader nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
header.mm-head .mm-mainHeader nav ul li a {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #FFFFFF;
    padding: 15px 30px;
    display: flex;
    gap: 16px;
    align-items: center;
}

header.mm-head .mm-mainHeader nav ul li ul.dropdown-list.sub-menu {
    display: none;
    width: 300px;
    border-radius: 5px;
}
header.mm-head .mm-mainHeader nav ul li a .ts-down-icon {
    border-color: #FFFFFF;
}

header.mm-head .mm-mainHeader nav ul li a:hover {
    opacity: 1;
}
header.mm-head .mm-mainHeader nav ul li:hover > ul.dropdown-list.sub-menu {
    display: flex;
    position: absolute;
    z-index: 1;
    background: #fff;
    flex-direction: column;
    top: 52px;
    left: 0;
    border: .5px solid #cfcfcf;
}
header.mm-head .mm-mainHeader nav ul li ul li {
    flex-wrap: nowrap;
    align-items: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    overflow: hidden;
    border-bottom: .5px solid #cfcfcf;
}
header.mm-head .mm-mainHeader nav ul li ul li a {
       flex-wrap: nowrap;
    align-items: center;
    padding: 6px 18px !important;
    transition: .15s ease;
    font-size: 18px;
    gap: 10px;
    color: #313135;
}
header.mm-head .mm-mainHeader nav ul li ul li .ts-down-icon {
    border-color: #092053;
    transform: rotate(-45deg);
}
.mm-hEnd .flexify {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.user-area-menu  ul.simplify-ul.sub-menu{
    display: none;
    width: 230px;
    border-radius: 5px;;
}
.user-area-menu li.ts-popup-component:hover > ul.simplify-ul.sub-menu{
    display: flex;
    position: absolute;
    z-index: 1;
    background: #fff;
    flex-direction: column;
    top: 52px;
    left: 0;
    border: .5px solid #cfcfcf;
}
.mm-hEnd {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mm-search .ts-filter.ts-popup-target {
    font-family: "Roboto", Sans-serif;
    font-size: 13px;
    font-weight: 400;
   background: #02010100 !important;
    border-radius: 8px;
    height: 48px;
    border: 1px solid #FFFFFF;
}
.mm-search .ts-filter.ts-popup-target svg {
    fill: #FFFFFF;
    min-width: 24px;
    width: 24px;
    height: 24px;
}
.mm-search .ts-filter.ts-popup-target .ts-filter-text {
    color: #FFFFFF;
}
.mm-search .ts-filter.ts-popup-target .ts-filter-text {
    color: #FFFFFF;
}
header.mm-head .mm-mainHeader .mm-hEnd {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ts-user-area .ts-popup-content-wrapper.min-scroll .ts-popup-head.flexify.ts-sticky-top {
    padding: 0;
    background: transparent;
    margin: 0;
    height: auto;
    border: none;
}
.ts-user-area .ts-popup-content-wrapper.min-scroll .ts-popup-head.flexify.ts-sticky-top span {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}
.mm-hEnd .flexify li.ts-popup-component a .ts-down-icon {
    border-color: #FFFFFF;
}
.mm-hEnd .flexify li.ts-popup-component {
    flex-direction: row-reverse;
}
.mm-hEnd .flexify li a .ts-comp-icon.flexify svg {
    background: transparent;
    color: #fff;
    fill: #fff;
}

.mm-hEnd .flexify li a .ts-comp-icon.flexify:hover {
    background: transparent;
}


/*header*/



.mm-header-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 5px;
    justify-content: space-between;
    margin:25px 0;
}
.mm-sidebar .mm-header-actions button {
    width: 100%;
    border: none;
    background: #eff3fa;
}
.mm-sidebar .mm-header-actions button:hover {
    background: #31ffff;
    color: #092053;
}

.dealerPage .clsInnerAside .actions_btnsx > a.mm-btn-save {
    flex: 0 0 49%;
    max-width: 49%;
    border: none;
    background: #eff3fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 8px;
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.dealerPage .clsInnerAside .actions_btnsx > a.mm-btn-save:hover {
    background: #31ffff;
    color: #092053;
}
.mm-header-actions .mm-edit {
    width: 100%;
}
.mm-header-actions .mm-edit button {
    width: 100%;
    background: #31ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 16px 0;
}
.mm-header-actions .mm-edit button:hover {
    background: #31ffff;
    color: #FFF;
}
.mm-header-actions .mm-edit button svg {
    width: 18px;
    height: 18px;
    fill: #5e5e5e;
}
.mm-header-actions .mm-edit button:hover svg{
     fill: #fff;
}
.clsAsideBox {
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}
.clsAsideBox h4{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Roboto';
    margin-bottom: 10px;
}
.mm-dealer-sidebar.clsAsideBox{
     display:none;
}
.mm-enquiry-box{
    background-color:#EFF3FA;
    display:none;
}
.mm-enquiry-box form textarea {
    height: 130px;
}
.mm-enquiry-box form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
form.mm-form button.mm-btn-view {
    border: none;
}
.mm-single-layout .mm-sidebar h3 {
   color: #092053;
    font-family: "Roboto", Sans-serif;
    font-size: 33px;
    font-weight: 700;
    text-align: left;
    line-height: normal;
    display: block;
    text-transform: uppercase;
}
.mm-clsNeed {
    background: #092053;
}
.mm-clsNeed img {
    width: 100%;
}
.mm-clsNeed.clsAsideBox h4 {
    color: #31ffff;
}
.mm-clsNeed.clsAsideBox p {
    color: #fff;
}
.mm-clsNeed.clsAsideBox a {
    background-color: #31FFFF;
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    color: #092053;
    border-radius: 10px;
    padding: 10px 40px;
    display: block;
    text-align: center;
}
.mm-clsNeed.clsAsideBox .aImg a {
    background: transparent;
    padding: 0;
    max-width: 185px;
    margin: 25px auto 0;
}

 .loan-card{
     background: #eff3fa;
 }

.loan-title{
  text-align:center;
  font-size:26px;
  font-weight:700;
  color:#344054;
  margin-bottom:26px;
}

.form-group{
  margin-bottom:18px;
}

.form-label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:600;
  color:#4b5563;
}

.input-box{
  display:flex;
  align-items:center;
  height:50px;
  border:1px solid #d6dde5;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

.currency{
  width:44px;
  height:100%;
  border-right:1px solid #d6dde5;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #fff;
  color:#6b7280;
  font-size:14px;
  font-weight:600;
}

.input-box input{
  width:100%;
  height:100%;
  border:none;
  outline:none;
  padding:0 14px;
  font-size:15px;
  color:#111827;
  background: #fff;
}

.double-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.small-input{
  display:flex;
  align-items:center;
  height:50px;
  border:1px solid #d6dde5;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

.small-input input{
  width:100%;
  height:100%;
  border:none;
  outline:none;
  padding:0 12px;
  font-size:15px;
  background: #fff;
}

.suffix{
  height:100%;
  padding:0 10px;
  border-left:1px solid #d6dde5;
 background: #fff;
  display:flex;
  align-items:center;
  color:#6b7280;
  font-size:12px;
  white-space:nowrap;
}

/* TOGGLE */

.repayment-label{
  margin-bottom:12px;
  font-size:15px;
  font-weight:700;
  color:#344054;
}

.repayment-toggle{
  width:100%;
  height:58px;
  border:1px solid #d6dde5;
  border-radius:16px;
  background:#fff;
  display:flex;
  padding:8px;
  position:relative;
  overflow:hidden;
}

.toggle-slider{
  position:absolute;
  top:4px;
  left:4px;
  width:calc(50% - 4px);
  height:50px;
     background: #31ffff;
  border-radius:12px;
  transition:0.3s ease;
  z-index:1;

  box-shadow:
    0 4px 12px rgba(34,223,215,0.25);
}

.repayment-toggle.monthly .toggle-slider{
  transform:translateX(100%);
}

.arrow-circle{
  position:absolute;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#16d8d2;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  top:20px;
  left:12px;
  z-index:3;
  transition:0.3s ease;

  box-shadow:
    0 3px 10px rgba(24,216,210,0.35);
}

.repayment-toggle.monthly .arrow-circle{
  left:calc(50% + 8px);
}

.arrow-circle svg{
  width:12px;
  height:12px;
}

.toggle-btn{
  flex:1;
  border:none;
  background:transparent;
  border-radius:12px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  position:relative;
  z-index:2;
  transition:0.3s ease;
  color:#344054;
}

.toggle-btn.active{
  color:#111827;
}

/* SUMMARY */

.summary{
  text-align:center;
  padding:26px 0 0;
  display:none;
}

.mm-single-layout .mm-sidebar .summary h3{
  line-height: 1.3;
    color: #092053;
    margin-bottom: 8px;
    font-size: 20px;
}
.summary small{
 display: block;
    font-weight: 500;
    color: #092053;
    margin-bottom: 2px;
    font-size: 16px;
    font-family: "Roboto", Sans-serif;
}

.payment-amount{
 margin-top: 5px;
    font-weight: 700;
    color: #0927EB;
    font-size: 28px;
    font-family: 'Roboto';
    letter-spacing: -.5px;
}

.total-label{
  display: block;
    font-weight: 500;
    color: #092053;
    margin-bottom: 2px;
    font-size: 16px;
    font-family: "Roboto", Sans-serif;
}

.total-amount{
  margin-top: 5px;
    font-weight: 700;
    color: #0927EB;
    font-size: 28px;
    font-family: 'Roboto';
    letter-spacing: -.5px;
}
.repayment-toggle .toggle-btn {
      background: transparent !important;
    padding: 12px 0;
    color: #092053 !important
}

.repayment-toggle .toggle-btn:hover {
    background: transparent;
    color: #111827;
}

.finance-box h5 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Roboto';
    text-align: center;
    margin-bottom: 8px;
}
.finance-box p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: 0px;
    color: #092053;
    text-align: center;
    margin-bottom: 24px;
}
.finance-box .apply-btn {
    display: block;
    width: 100%;
    padding: 17px 0;
    border: none;
    margin-bottom: 20px;
    background: #092053;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font: inherit;
    box-sizing: border-box;
    cursor: pointer;
}
.finance-box .apply-btn:hover {
    background: #31ffff;
    color: #092053;
}
.finance-box .brand {
    text-align: center;
}
.finance-box {
    padding-top: 15px;
}
.footer {
    background-color: #092053;
    padding: 100px 15px 0; 
}
.footer-container {
    display: flex;
    flex-direction: column;
}
.footer-container .footer-top {
     max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
}
.footer-container .footer-top .footer-brand {
    width: 35%;
}
.footer-container .footer-top .footer-brand img {
    width: 100%;
}
.footer-container .footer-top .footer-links-wrapper {
    width: 62%;
        display: flex;
    justify-content: space-between;
}
.footer-container .footer-top .footer-brand .social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.footer-container .footer-top .footer-brand .social-icons a {
    width: 55px;
    height: 55px;
    background: #31ffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-container .footer-top .footer-brand .social-icons a svg {
    width: 25px;
    height: 25px;
}
.footer-container .footer-top .footer-brand .social-icons a:hover{
        background-color: #FFFFFF;
}
.footer-container .footer-top .footer-links-wrapper .footer-column ul {
    padding: 0;
    margin: 0;
}
.footer-container .footer-top .footer-links-wrapper .footer-column ul li a {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    padding: 4px 20px;
    display: block;
    line-height: 22px;
}
.footer-container .footer-top .footer-links-wrapper .footer-column {
    width: 49%;
}
.footer-container .footer-top .footer-links-wrapper .footer-column ul li {
    list-style: none;
}
.footer-container .footer-top .footer-links-wrapper .footer-column ul li a:hover {
    color: #31ffff;
}
.footer-container .footer-top .footer-links-wrapper .footer-column .footer-contact {
    padding: 20px 20px 0;
}
.footer-container .footer-top .footer-links-wrapper .footer-column .footer-contact p, .footer-container .footer-top .footer-links-wrapper .footer-column .footer-contact a {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
    line-height: 20px;
}
.footer-container .footer-top .footer-links-wrapper .footer-column .footer-contact a:hover {
    color: #31ffff;
}
.footer-bottom {
    border-top: 1px solid #223765;
    padding: 30px 0;
}
.footer-bottom .BTMInner {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-bottom .BTMInner p {
    padding: 0px 0px 0px 0px;
    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.footer-bottom .BTMInner p a{
    color: #789299;
    text-decoration: underline;
}
.clsNeedHelp {
    background: #092053;
    padding: 32px 16px;
   margin: 35px 0 80px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.clsNeedHelp h4 {
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff !important;
    margin: 0;
    line-height: 25px;
}
.clsNeedHelp p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}
.clsNeedHelp .clsMRG {display: flex;flex-direction: row;justify-content: center;align-items: center;gap: 10px;}

.clsNeedHelp .clsMRG a {
    background: #31ffff;
    color: #000000;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    padding: 9px 20px;
    display: block;
    width: 200px;
    text-align: center;
    border: 1px solid #31ffff;
    transition: 0.5s all;
}

.clsNeedHelp .clsMRG a:hover {
    background: transparent;
    color: #31ffff;
    transition: 0.5s all;
}
.mm-Harvok  .mm-HarvokLogo img {
    width: 100%;
    max-width: 230px;
}
.mm-Harvok .mm-HarvokLogo {
    text-align: center;
    padding: 25px;
    border-bottom: 1px solid #bfbfbf;
}
.mm-Harvok.clsAsideBox {
    padding: 0;
}
.mm-Harvok .mm-Harvokcnt {
    padding: 25px;
}

.mm-Harvok .mm-Harvokcnt h4 {
    text-align: center;
    margin-bottom: 5px;
}

.mm-Harvok .mm-Harvokcnt p {
    color: #5e5e5e;
    text-align: center;
    font-size: 15px;
    line-height: 16px;
}

.mm-Harvok .mm-Harvokcnt .simplify-ul li a {
    padding: 17px 0;
    border: none;
    background: #31ffff;
    color: #092053;
    width: 100%;
    display: block;
        margin-bottom: 10px;
    border-radius: 5px;
}
.mm-Harvok .mm-Harvokcnt .simplify-ul li a.ts-action-con.clsWeb {
  color: #fff;
  background: #092053;
}

.clsWeb {
  color: #fff !important;
  background: #092053;
  width: 100%;
    display: block;
        margin-bottom: 10px;
    border-radius: 5px;
    padding: 17px 0;
    border: none;
}


.mm-Harvok .mm-Harvokcnt .simplify-ul li {
    width: 100%;
    text-align: center;
}
.mm-Harvok .mm-Harvokcnt .simplify-ul li a.ts-action-con.clsWeb {
    color: #fff;
    background: #092053;
}

.clsIcons ul {
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.clsIcons ul li {
    list-style: none;
}

.clsIcons ul li a {
    display: block;
    background: #eff3fa;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
}

.clsIcons ul li a svg {
    width: 22px;
}
.mm-clsNeed h4, .mm-clsNeed p {
    text-align: center;
}
.dealerPage .dealerHead h1,
.dealerPage .dealerHead h2 {
    font-size: 35px;
    line-height: 48px;
    margin: 0;
    font-weight: 800;
}

.dealerPage .dealerHead p {
    font-size: 23px;
    font-weight: 500;
    text-align: left;
    color: #092053;
}

.dealerPage .dealerHead .mm-dealer-website {
    margin-top: 8px;
}

.dealerPage .dealerHead .mm-dealer-website a {
    color: var(--mm-primary, #31ffff);
    font-weight: 600;
    text-decoration: underline;
}
.dealerPage .mm-header-actions.clsAsideBox {
    margin-top: 0;
    padding: 0;
}

/* Align Save + Share (dropdown) like single vehicle sidebar */
.dealerPage .clsInnerAside .actions_btnsx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 2%;
    width: 100%;
}

.dealerPage .mm-single-layout .mm-sidebar h3 {
    font-size: 40px;
    text-align: center;
    border-bottom: 1px solid #bfbfbf;
    padding: 25px;
    margin:0;
    text-transform: capitalize;
    width: 100%;
}
.clsInnerAside{
    padding: 25px;
}
.clsInnerAside .mm-custlogo {
    margin-bottom: 35px;
}
.clsInnerAside .mm-edit {
    margin-top: 8px;
}
.clsInnerAside .mm-edit button.mm-btn-share {
    background: #092053;
    color: #fff;
}
.clsLocation {
    margin-bottom: 50px;
}
.clsLocation img {
    width: 100%;
}

.mm-dealer-map iframe {
    max-width: 100%;
}

.mm-dealer-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    max-height: 180px;
    background: var(--mm-gray-100);
    border-radius: 12px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--mm-primary);
}

.mm-btn-dealer-site {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.mm-custlogo img {
    width: 100%;
}

.dealerPage .clsAbt h2,
.dealerPage .clsAbt h3,
.dealerPage .clsLising h3.clsList {
    color: #092053;
    font-family: "Roboto", Sans-serif;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #b7c7d7;
}
.clsAbt p {
    color: #5e5e5e;
    font-size: 19px;
    line-height: 25px;
}
.clsAbt {
    margin-bottom: 75px;
}

/* Responsive */

@media (max-width: 1280px) {
   .mm-single-layout{
       gap: 30px;
   } 
       .mm-Harvok .mm-Harvokcnt {
        padding: 20px;
    }
    .clsAsideBox{
        padding: 20px;
    }
    .mm-single-layout .mm-sidebar h3{
        font-size: 29px;
    }
    .mm-single-layout .mm-main-content{
       width:70%;
   }
   .mm-single-layout .mm-sidebar{
     width: 30%;
    }
}

@media (max-width: 1400px) {
  .mm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
    .mm-layout {
        grid-template-columns: 1fr;
      }
      .mm-single-layout {
        grid-template-columns: 1fr;
      }
      .mm-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .mm-hero h1 { font-size: 3rem; }
      .mm-vehicle-header-section h1 { font-size: 2.5rem; }
      .mm-header-right { justify-content: flex-start; }
      
      header.mm-head .mm-mainHeader > div.mm-logo {
        width: 25%;
    }
    
    header.mm-head .mm-mainHeader > div.mm-logo .mm-menu {}
    
    header.mm-head .mm-mainHeader nav ul li a {
        padding: 20px;
        font-size: 20px;
    }

    .mm-related .mm-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    div#mm-results-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    div#mm-results-grid .mm-card-image{
        aspect-ratio: 16 / 9;
    }
    .dealerPage .mm-single-layout .mm-sidebar h3 {
        font-size: 35px;
        line-height: 32px;
    }

}

@media (max-width: 992px) {
  .mm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 1120px) {
    .mm-header-actions{
        gap: 20px 4px;
        margin: 17px 0;
    }
    .mm-card-image img{
      max-height: 180px;
  }

}

@media (max-width: 1025px) {
   .mm-results-header .mm_toptext{
       flex-direction: column;
   } 
   .mm-results-header .mm_toptext .mm-inner{
       padding-left: 0;
       padding-top: 32px;
       border-top: 4px solid #31FFFF;
       border-left:none;
   }
   .mm-card-image{
       /* aspect-ratio: auto; */
       max-height: unset;
   }
   .footer-container .footer-top .footer-links-wrapper .footer-column ul li a{
       font-size: 16px;
        padding: 4px 20px;
   }
   .footer{
       padding: 85px 15px 0;
   }
   .footer-container .footer-top{
       margin-bottom: 40px;
   }
   .mm-single-layout{
       flex-direction: column;
   }
   .mm-single-layout .mm-main-content{
       width:100%;
   }
   .mm-single-layout .mm-sidebar {
     width: 100%;
    }
    .dealerPage .clsAbt h2,
    .dealerPage .clsAbt h3,
    .dealerPage .clsLising h3.clsList{
        margin-bottom: 25px;
    }
    .clsAbt {
        margin-bottom: 50px;
    }
    div#mm-results-grid .mm-card-image{
          aspect-ratio: unset;
      height: 205px
    }
}
@media (max-width: 991px) {
  .mm-card-image{
    aspect-ratio: 16 / 7.5;
  }
  .mm-card-image img {
    max-height: 205px;
  }
  .mm-filter-toggle-wrap button#mm-filter-toggle {
    padding: 10px 30px;
  }
  .mm-results-count {
    font-size: 18px;
  }
  .mm-main-content .mm-details-section h3, .mm-single-layout .mm-related h3{
    font-size: 28px !important;
    padding-bottom: 15px;
    margin-bottom: 35px !important;
  }
  .mm-related .mm-grid article.mm-card .mm-card-content h3 {
    font-size: 19px !important;
  }

}

@media (max-width: 767px) {
  .mm-grid {
    grid-template-columns: 1fr;
  }
  .footer-container .footer-top {
        justify-content: space-between;
            flex-direction: column;
    }
    .footer-container .footer-top .footer-brand {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-direction: row;
        padding: 0 17px;
    }
    .footer-container .footer-top .footer-brand img {width: 50%;}
    
    .footer-container .footer-top .footer-brand .footer-logo {
        text-align: left;
    }
    .footer-container .footer-top .footer-links-wrapper {
        width: 100%;
    }
    .mm-card-image img {
        max-height: inherit;
    }
    .clsAbt p {
        font-size: 16px;
        line-height: 22px;
    }
    .dealerPage .dealerHead p {
    font-size: 20px;
    }
    .mm-main-content .mm-details-section h3, .mm-single-layout .mm-related h3{
        margin-bottom: 20px !important;
    }
    .clsInnerAside{
        width: 100%;
    }
    .clsInnerAside .mm-custlogo {
        text-align: center;
    }
    .clsInnerAside .mm-custlogo img {
        max-width: 300px;
    }
    .dealerPage .mm-single-layout .mm-sidebar h3 {
    font-size: 26px;
    line-height: 28px;
        
    }


    
}

@media (max-width: 650px) {
    .footer-container .footer-top .footer-brand{
            flex-direction: column;
    }
    .footer-container .footer-top .footer-brand .footer-logo {
        text-align: center;
    }
    .footer-container .footer-top .footer-links-wrapper{
        flex-direction: column;
    }
    .footer-container .footer-top .footer-links-wrapper .footer-column{
            width: 100%;
    }
        .footer-container .footer-top .footer-brand img {
        width: 250px;
    }
    .footer-container .footer-top .footer-links-wrapper .footer-column .footer-contact {
        padding: 20px 20px;
    }
    .clsNeedHelp .clsMRG{
            flex-direction: column;
    }
    .clsNeedHelp p{
        text-align: center;
    }
    .dealerPage .dealerHead h1,
    .dealerPage .dealerHead h2 {
        font-size: 27px;
       line-height: 34px;
    }
    .dealerPage .dealerHead p {
    font-size: 16px;
    }
    .mm-layout{
        gap: 20px;
    }
    .dealerPage .clsAbt h2,
    .dealerPage .clsAbt h3,
    .dealerPage .clsLising h3.clsList{
         font-size: 27px;
       line-height: 34px;
    }
    .clsLocation {
        margin-bottom: 30px;

      }
      .mm-related .mm-grid {
          grid-template-columns: repeat(1, 1fr);
      }
      .mm-main-content .mm-details-section h3, .mm-single-layout .mm-related h3 {
          font-size: 23px !important;
      }
      .mm-specs-grid{
          grid-template-columns: repeat(1, 1fr);
      }
      .mm-card-specs .mm-card-spec span{
          font-size: 15px;
          line-height: 18px
      }
       div#mm-results-grid {
          grid-template-columns: repeat(1, 1fr) !important;
  
      }
}

/* Dealer archive (/dealers/) — numbered pagination (cards: mm-dealers-slider.css) */
.mm-archive-dealers__pagination {
  margin-top: 48px;
}

.mm-archive-dealers__pagination .navigation.pagination {
  display: flex;
  justify-content: center;
}

.mm-archive-dealers__pagination .nav-links ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.mm-archive-dealers__pagination .page-numbers li {
  margin: 0;
}

.mm-archive-dealers__pagination a.page-numbers,
.mm-archive-dealers__pagination span.page-numbers {
  min-width: 50px;
  height: 50px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mm-gray-200);
  border-radius: 50%;
  text-decoration: none;
  color: var(--mm-dark);
  font-weight: 700;
  transition: all 0.2s;
}

.mm-archive-dealers__pagination span.page-numbers.current {
  background: #31ffff;
  border-color: var(--mm-dark);
  color: var(--mm-dark);
}

.mm-archive-dealers__pagination a.page-numbers:hover {
  background: var(--mm-gray-100);
  border-color: var(--mm-dark);
}

.mm-archive-dealers__pagination a.prev,
.mm-archive-dealers__pagination a.next {
  border-radius: 50%;
}

/* Price / finance info icon modals (copy from PHP: get_finance_disclosure_localize) */
.mm-disclosure-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mm-disclosure-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.mm-disclosure-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	cursor: pointer;
}

.mm-disclosure-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 32rem;
	max-height: min(85vh, 560px);
	overflow: auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
	padding: 35px 40px;
	box-sizing: border-box;
}

.mm-disclosure-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	background: none !important;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: #64748b;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.mm-disclosure-modal__close:hover {
	background: none !important;
	color: #0f172a !important; 
}

.mm-disclosure-modal__title {
	margin: 0 2rem 0.75rem 0;
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
}

.mm-disclosure-modal__title[hidden] {
	display: none !important;
}

.mm-disclosure-modal__content {
	font-size: 14px;
  line-height: 21px;
	color: #334155;
}

.mm-disclosure-modal__content p {
	margin: 0 0 0.85em;
}

.mm-disclosure-modal__content p:last-child {
	margin-bottom: 0;
}

.mm-disclosure-modal__content a {
  color: #092053;
  font-weight: 600;
}

.mm-disclosure-modal__content .mm-disclosure-ul {
	text-decoration: underline;
}

body.mm-disclosure-modal-open {
	overflow: hidden;
}
.clsApplyBtn{
  background: #31ffff;
  width: 200px;
  display: block;
  text-align: center;
  margin: 15px auto 15px auto;
  height: 44px;
  line-height: 46px;
  border-radius: 10px;
}
.clsApplyBtn:hover{
  background: #092053;
  color: #FFF !important; 
}