:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --font-base: 16px;
  --font-family: "Segoe UI", Roboto, Arial, sans-serif;

  /* Brand-specific tokens (Toyota Trust) */
  --tt-red: #EB0A1e;
  --tt-red-dark: #c81920;
  --tt-gray-bg: #e9e9e9;
  --tt-white-bg: #ffffff;
  --row-bg-light: #F1F1F1;
  --tt-text-dark: #222;
  --tt-text-muted: #666;
  --tt-light-grey: #b3b3b3;
  --tt-dark-gray: #7B7B7B;
  --tt-radius-pill: 50px;
  --tt-header-height: 78px;
  --tt-shadow-soft: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  ;
  --tt-shadow-bottom-right: 6px 6px 14px rgba(0, 0, 0, 0.15), -6px -6px 14px rgba(255, 255, 255, 0.7);
  --tt-border-gradient: linear-gradient(135deg, #5b5b5b 0%, #999090 100%);
  --tt-faq-border: #e2e2e2;
  --tt-box-shadow: rgba(0, 0, 0, 0.5) -8px 6px 23px -3px,
    rgba(0, 0, 0, 0.4) -4px 8px 23px -5px;
  --tt-card-radius: 10px;
  --tt-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --tt-gradient-bg-55: linear-gradient(135deg, #c3c3c3 0%, #e9e9e9 55%, #ffffff 100%);
  --tt-gradient-80: linear-gradient(100deg, #c3c3c3 0%, #e9e9e9 80%, #ffffff 100%);
  --tt-gradient-to-right: linear-gradient(100deg, #fff 0%, #cacaca 100%);
  --light-gradient: linear-gradient(90deg, #EAEAEA 0%, #ffffff 100%);
  --tt-gradient-bottom-top: linear-gradient(180deg, #fff 0%, #e9e9e9 80%, #c3c3c3 100%);
  --tt-gradient-bg-new : linear-gradient(40deg, #ffffff 3%, #ebebeb 96%);
  --main-gradient-bg: linear-gradient(120deg,
      #f1f1f1 0%,
      #ffffff 15%,
      #ececec 30%,
      #f9f9f9 45%,
      #efefef 60%,
      #ffffff 75%,
      #eaeaea 90%,
      #f7f7f7 100%);
}

.trust-card-gradient {
  background: linear-gradient(90deg,
      #f5f5f5 0%,
      #fafafa 45%,
      #ffffff 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-base);
  line-height: 1.6;

  /* ------ new add -------- */
  color: var(--tt-text-dark);
  background: #fff;
}

.shadow-soft {
  box-shadow: var(--tt-shadow-soft) !important
}

.section-bg {
  background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 50%, #e9e9e9 100%)
}

.form-control:focus {
  border-color: #eb0a1e36 !important;
  box-shadow: 0 0 0 .25rem rgb(235 10 30 / 15%) !important;
}


.card-border {
  border: 2px solid #bebebe;
}

.btn-danger {
  background-color: var(--tt-red);
}


/* Example: Flexbox layout utility */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Example: Grid layout utility */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.tt-shadow-soft {
  box-shadow: var(--tt-shadow-soft) !important;
}

.tt-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-image: url('../img/Gradient_bg.png');
}


/* ---------------- New CSS -------------------- */
.tt-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.tt-header .container-fluid {
  padding-right: 42px !important;
  padding-left: 42px !important;
}

.tt-header .navbar-brand {
  margin-right: 18px;
}


/* Hamburger button — visible, tappable box instead of a bare icon */
.tt-header .navbar-toggler {
  border: 0;
  /*border-radius: 8px;*/
  /*padding: 6px 10px;*/
  /*background: #f7f7f7;*/
}

.tt-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem transparent;
}

.tt-logo-img {

  width: 70%;
  object-fit: contain;
  border-radius: 4px;
}

/* Curly / pill-shaped location dropdown button */
.tt-location-btn {
  min-height: 28px;
  padding: 1px 5px;
  background: #e9e9e9;
  border: 1px solid transparent;
  font-size: 0.66rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--tt-radius-pill) !important;
}

.tt-location-btn.dropdown-toggle::after {
  content: var(--fa) / "";
}

.light-gray {
  color: #838383;
}

.tt-location-btn:hover,
.tt-location-btn:focus {
  border-color: var(--tt-text-dark);
  color: var(--tt-text-dark);
}

/* Curly / pill-shaped search box, matching location box radius */
.tt-search-box {
  position: relative;
  width: 125px;
}

.tt-search-box .form-control {
  height: 30px;
  border-radius: var(--tt-radius-pill) !important;
  padding: 4px 34px 4px 12px;
  background: #e9e9e9;
  font-size: 0.76rem;
  min-width: 0;
  border: 1px solid transparent;
}

.tt-search-box .form-control:focus {
  border-color: var(--tt-text-dark);
  box-shadow: 0 0 0 0.15rem rgba(34, 34, 34, 0.15);
}

.card-elevated {
  box-shadow: var(--tt-shadow-soft);
  background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 50%, #e9e9e9 100%);
}

.tt-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--tt-text-muted);
}

.tt-main-links .nav-link {
  color: var(--tt-text-dark);
  padding: 4px 0;
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.tt-main-links {
  gap: 18px;
}

.tt-main-links .nav-link:hover,
.tt-main-links .nav-link.active {
  color: var(--tt-text-dark);
}

.tt-right-links .nav-link {
  color: var(--tt-text-dark);
}


.tt-right-links .nav-link:hover {
  color: var(--tt-text-dark);
}

.tt-icon-label {
  display: block;
  letter-spacing: 0.3px;
}

/* Mobile/tablet search toggle icon (beside the city dropdown) */
.tt-search-toggle-btn {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  background: #e9e9e9;
  color: var(--tt-text-dark);
}

.tt-search-toggle-btn:hover,
.tt-search-toggle-btn:focus {
  border-color: var(--tt-text-dark);
}

/* ===================== HERO ===================== */
.tt-hero {
  /* background: var(--tt-gray-bg); */
  /*padding: 24px 0 0;*/
  /*min-height: 55vh;*/
}

.tt-hero-outer {
  padding-left: 42px;
  padding-right: 0;
}

/* Banner card: image + arrows + buttons ONLY */
.tt-hero-wrapper {
  width: 100%;
  max-width: 1050px;
  flex-shrink: 1;
  background: linear-gradient(135deg, #f7f7f7 0%, #e8e8e8 100%);
  line-height: 0;
  border-radius: 8px;
}

#carouselExampleAutoplaying {
  box-shadow: var(--tt-box-shadow);
}

.googlemap {
  box-shadow: var(--tt-shadow-soft);
}

.tt-hero-img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.tt-hero-img.tt-fade {
  opacity: 0;
  transform: scale(0.98);
}

.tt-hero-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  padding: 0 20px;
  z-index: 2;
}

.tt-hero-side {
  margin: 0;
  padding: 0;
}

.tt-btn-red {
  background: var(--tt-red);
  color: #fff;
}

.tt-btn-red:hover {
  background: var(--tt-red-dark);
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  background-color: #00000057;
  border-radius: 4px;
  opacity: 0.85;
}

.carousel-control-prev {
  left: 12px;
}

.carousel-control-next {
  right: 12px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Arrows */
.tt-hero-arrow {
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 34px;
  height: 34px;
  color: #444;
}

.tt-arrow-left {
  left: 10px;
}

.tt-arrow-right {
  right: 10px;
}

.tt-hero-arrow:hover {
  background: #fff;
  color: var(--tt-red);
}

/* Social Sidebar */
/* Social Sidebar */
.tt-social-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #8C8C8C 0%, #757575 37%, #4E4E4E 100%);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.tt-social-icon:hover {
  background: #6f7784;
  color: #fff;
}

/* Info boxes */
.tt-info-box {
  width: 40%;
  background: linear-gradient(135deg, #8C8C8C 0%, #757575 37%, #4E4E4E 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: left;
  padding: 4px 5px;
  width: 100px;
  transition: transform 0.25s ease, background 0.25s ease;
  transform-origin: center right;
  /* kyunki ye right side pe fixed hai */
  will-change: transform;
}

.tt-info-box i {
  font-size: 18px;
}

.tt-info-box:hover {
  background: var(--tt-red);
  color: #fff;
  transform: scale(1.08);
}

.tt-info-box:hover .tt-360-icon {
  border-color: #fff;
}

/* Circular "3D" badge used in the "Know Your Car Price" info box */
.tt-360-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Fixed sidebar - stays visible on every screen while scrolling, lives near the footer in markup */
.tt-fixed-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  padding: 0;
}

/* Ask CARA bar */
.tt-cara-bar {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: 650px;
  padding: 0 16px;
  z-index: 10;
}

.tt-cara-inner {
  background: #fff;
  box-shadow: var(--tt-shadow-soft) !important;
  gap: 12px;
  padding: 10px 18px;
}

.tt-cara-inner input {
  outline: none;
  font-size: 0.9rem;
  color: var(--tt-text-muted);
}

.tt-mic-icon {
  color: var(--tt-text-muted);
  cursor: pointer;
}

.tt-ask-cara-btn {
  white-space: nowrap;
}

/* =======================================================================
   COMMON / REUSABLE CLASSES
   ========================================================================= */


/* =======================================================================
   FEATURE HIGHLIGHTS (203 Point Check / Warranty / Services / Financing)
   ========================================================================= */

   .ttt-feature-item {
  text-align: center;
  border-radius: var(--tt-card-radius);
  padding: 24px 18px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(40deg, #ffffff 3%, #ebebeb 96%);
  
  border: 2px solid #C4C4C4;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
 
.ttt-feature-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid var(--tt-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.ttt-feature-icon {
  width: 34px;
  height: 34px;
}

.ttt-feature-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--tt-red);
  margin: 0 0 8px;
}

.ttt-feature-item.active .tt-feature-label {
  color: var(--tt-red);
}

.ttt-feature-desc-wrap {
  max-height: none;
  opacity: 1;
  overflow: visible;
}

.ttt-feature-item.active .tt-feature-desc-wrap {
  max-height: 200px;
  opacity: 1;
 
  transition: max-height 0.35s ease, opacity 0.4s ease 0.1s;
}

.ttt-feature-desc {
  font-size: 0.85rem;
  color: var(--tt-text-muted);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.tt-feature-item {
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--tt-card-radius);
  padding: 20px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tt-feature-item.active {
  background: #fff;
  border: 1px solid var(--tt-red);
}

.tt-feature-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--tt-gradient-80);
  border: 1px solid var(--tt-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.tt-feature-item:hover .tt-feature-icon-box,
.tt-feature-item.active .tt-feature-icon-box {
  background: #fff;
  border-color: var(--tt-red);
}

.tt-feature-icon {
  width: 34px;
  height: 34px;
}

.tt-feature-label {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--tt-faq-text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.tt-feature-item.active .tt-feature-label {
  color: var(--tt-red);
}

.tt-feature-desc-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.tt-feature-item.active .tt-feature-desc-wrap {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
  transition: max-height 0.35s ease, opacity 0.4s ease 0.1s;
}

.tt-feature-desc {
  font-size: 0.85rem;
  color: var(--tt-text-muted);
  line-height: 1.6;
  margin: 0;
  text-align: center;

}

.tt-section-gradient-bg {
  background: var(--main-gradient-bg);
}

.tt-eyebrow {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height:normal;
  text-transform: uppercase;
  color: var(--tt-text-dark);
}

.tt-heading {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--tt-text-dark);
  text-transform: uppercase;
}

.tt-text-red {
  color: var(--tt-red);
}

.tt-muted-sm {
  font-size: 0.65rem;
  color: var(--tt-text-muted);
}

.tt-tag {
  display: inline-block;
  background: var(--tt-white-bg);
  color: var(--tt-text-dark);
  font-size: 0.5rem;
  padding: 3px 6px;
}

.tt-btn-gray-pill {
  background: #8a8a8a;
  color: #fff;
  border: none;
  transition: background 0.2s ease;
}

.tt-btn-gray-pill:hover {
  background: var(--tt-red);
  color: #fff;
}

/* =======================================================================
   LIVE INVENTORY — CAR LISTING CARDS
   ========================================================================= */

.tt-card {
  border-radius: var(--tt-card-radius);
  box-shadow: var(--tt-shadow-sm);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tt-card-img-wrap {
  position: relative;
}

.tt-card-img-wrap img {
  width: 100%;
  /* height: 150px; */
  object-fit: cover;
  display: block;
}

.gradient-bg {
  background: var(--tt-gradient-bg-55) !important;
}

.light_gradient {
  background: var(--light-gradient);
}

.right-gradient-bg {
  background: var(--tt-gradient-to-right);
}


.tt-badge-owned {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--tt-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--tt-radius-pill);
  z-index: 2;
}

.tt-fav-stats {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.tt-fav-stats span {
  font-size: 0.6rem;
  color: var(--tt-text-dark);
  align-items: center;
  gap: 4px;
}

.tt-fav-stats p {
  font-size: 0.6rem;
  margin-bottom: 0;
  color: var(--tt-text-dark);
}

.tt-price {
  font-weight: 700;
  color: var(--tt-text-dark);
  font-size: 0.7rem;
}

.tt-emi {
  font-size: 0.55rem;
  color: var(--tt-text-muted);
}

.tt-location-text {
  font-size: 0.6rem;
  color: var(--tt-text-muted);
}

.tt-certified-badge {
  height: 30px;
  width: auto;
}

.small-font-size {
  font-size: 0.7rem !important;
}

.tt-stat-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1.9px solid var(--tt-text-muted);
  background: var(--tt-gradient-80);
}

.tt-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tt-stat-icon {
  font-size: 3.6rem;
  color: var(--tt-text-muted);
}

.tt-stat-number {
  color: var(--tt-red);
  font-weight: 700;
}

.tt-stat-label {
  color: var(--tt-text-dark);
  font-size: 1rem;
}

/* =======================================================================
   DEALERSHIP LOCATOR
   ========================================================================= */

.tt-toyota-icon {
  height: 20px;
  width: auto;
}

.tt-info-text {
  font-size: 0.7rem;
  color: var(--tt-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.tt-map-img {
  border-radius: var(--tt-card-radius);
  box-shadow: var(--tt-shadow-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-footer {
  background-color: #4a4747;
  color: #e8e8e8;
  padding: 60px 0 50px;
}


.tt-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.tt-footer-row>div {

  min-width: 160px;
}


.tt-footer-col-brand {
  flex: 1.8 1 0 !important;
  min-width: 260px;
}


.tt-footer-logo {
  margin-bottom: 20px;
}

.tt-footer-logo img {
  width: 25%;
  background: #ffffff;
  border-radius: var(--tt-card-radius);
  display: block;
}


.tt-footer-desc {
  color: #d4d2d2;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 25px 0;
}


.tt-footer-phone {
  display: inline-block;
  background-color: var(--tt-red);
  color: #fff;
  /*font-weight: 600;*/
  /*font-size: 0.95rem;*/
  /*padding: 10px 20px;*/
  /*border-radius: 4px;*/
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.tt-footer-phone i {
  margin-right: 8px;
}

.tt-footer-phone:hover {
  background-color: var(--tt-red-dark);
  color: #fff;
}


.tt-footer-heading {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  margin: 0 0 22px 0;
  text-transform: uppercase;
}


.tt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}


.tt-footer-links li:last-child {
  margin-bottom: 0;
}

.tt-footer-links a {
  color: #d4d2d2;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease-in-out;
}

.tt-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.tt-faq {
  /*padding: 60px 20px;*/
  background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 50%, #e9e9e9 100%);
}

.tt-faq-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* Header row: heading + search bar */
.tt-faq-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* margin-bottom: 36px; */
}

.tt-faq-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
}

.tt-faq-title .tt-highlight {
  color: var(--tt-faq-red);
}

.tt-faq-title .tt-dark {
  color: var(--tt-faq-text-dark);
}

.tt-faq-search {
  /*flex: 1 1 380px;*/
  /*max-width: 500px;*/
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 2px 18px;
  box-shadow: var(--tt-faq-shadow-sm);

  /* Gradient border trick */
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--tt-border-gradient) border-box;
}

.tt-faq-search i.fa-wand-magic-sparkles {
  color: var(--tt-faq-red);
  font-size: 1rem;
}

.tt-faq-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--tt-faq-text-dark);
  background: transparent;
}

.tt-faq-search input::placeholder {
  color: #999;
}

.tt-faq-search button {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--tt-faq-text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Accordion */
.tt-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tt-accordion-item {
  background: #fff;
  border: 1px solid var(--tt-faq-border);
  border-radius: var(--tt-card-radius);
  box-shadow: var(--tt-shadow-soft);
  overflow: hidden;
}

.tt-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tt-text-dark);
}

.tt-accordion-header .tt-chevron {
  color: var(--tt-text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.tt-accordion-item.active .tt-accordion-header .tt-chevron {
  transform: rotate(180deg);
}

.tt-accordion-body-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tt-accordion-item.active .tt-accordion-body-wrap {
  max-height: 300px;
}

.tt-accordion-body {
  padding: 0 26px 24px;
  border-top: 1px solid var(--tt-faq-border);
  padding-top: 18px;
  color: var(--tt-faq-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.tt-testimonial {
  position: relative;
  /* padding: 55px 110px 70px; */

  overflow: hidden;
}

.tt-carousel {
  position: relative;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  /*gap: 0;*/
  max-width: 1360px;
  margin: 0 auto;
}

.tt-testi-card {
  position: relative;
  box-sizing: border-box;
  border-radius: var(--tt-card-radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);*/
}

.tt-testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.tt-card-city {
  position: absolute;
  top: 26px;
  left: 26px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.tt-card-info {
  position: absolute;
  bottom: 24px;
  left: 26px;
  right: 26px;
  z-index: 2;
  color: #fff;
}

.tt-card-name {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 8px 0;
}

.tt-card-quote {
  font-size: 0.72rem;
  line-height: 1.3;
  color: #e8e8e8;
  margin: 0;
}

.tt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #ffffff7a;
  border: none;
  color: #444;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.tt-arrow:hover {
  background: #ffffff7a;
  border-color: var(--tt-red);
  color: var(--tt-red);
}

.tt-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.tt-arrow:disabled:hover {
  background: #ffffff7a;
  border-color: #ccc;
  color: #444;
}

.tt-arrow-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.tt-arrow-left {
  left: -5%;
}

.tt-arrow-right {
  right: -5%;
}

.tt-buysell-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 44px 32px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Panel show/hide with smooth fade */
.tt-toggle-panel {
  display: none;
}

.tt-toggle-panel.active {
  display: block;
  animation: ttFadeIn 0.3s ease;
}

@keyframes ttFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ttFeatureIn {
  from {
    opacity: 0;
    transform: translate(-60px, -60px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.toggle button {
  border: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 34px;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.2s ease;
  background: transparent;
  color: #1a1a1a;
}

.toggle button.active {
  background: linear-gradient(180deg, #ee1c24 0%, #d6161d 100%);
  color: #fff;
  box-shadow: 0 3px 8px rgba(214, 22, 29, 0.35);
}

.outer-frame {
  width: 100%;
  background: linear-gradient(135deg,
      #B5B5B5 0%,
      #52525287 12%,
      #FFFFFF 25%,
      #CECECE 62%,
      #626262c2 83%,
      rgba(100, 100, 100, 0.77) 84%,
      rgba(119, 119, 119, 0.67) 85%,
      rgba(135, 135, 135, 0.43) 87%,
      rgba(147, 147, 147, 0.23) 89%,
      rgba(156, 156, 156, 0.10) 91%,
      rgba(161, 161, 161, 0.02) 94%,
      rgba(163, 163, 163, 0) 100%);
  border-radius: 26px;
  padding: 6px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  position: relative;
  margin-top: 26px;
}

.panel {
  background: var(--tt-gradient-bottom-top);
  border-radius: 22px;
  padding: 48px 40px 48px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), inset 0 -1px 4px rgba(0, 0, 0, 0.05);
  display: grid;
}

.toggle-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 5;
}

.toggle {
  display: flex;
  background: linear-gradient(100deg, #fff 0%, #e9e9e9 15%, #c3c3c3 100%);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.toggle button {
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 34px;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.2s ease;
}

.headline .accent {
  color: var(--red);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.15) 85%, transparent);
  margin-bottom: 22px;
}

.subhead {
  text-align: center;
  font-size: 1.15rem;
  color: #2b2b2b;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
}

.feature .icon-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.feature p {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.4;
  /* font-weight: 500; */
}

.tt-toggle-panel.active .feature {
  animation: ttFeatureIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tt-carousel-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1360px;
}

.tt-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.4s ease;
}

.tt-testi-card {
  flex: 0 0 100%;
  width: 100%;
  height: 380px;
}


/* about page */
/* ===================== PRE-OWNED / TESTIMONIAL SECTION ===================== */
.tt-section-img {
  height: 260px;
  object-fit: cover;
  display: block;
}

.tt-video-wrap {
  cursor: pointer;
}

.tt-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--tt-red);
  border-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--tt-shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

.tt-play-btn:hover {
  background: var(--tt-red-dark);
  transform: translate(-50%, -50%) scale(1.08);
}



/* ===== Base stylesheet (merged) ===== */
.gradient-bg {
  background: var(--tt-gradient-bg-55) !important;
}

.tt-feature-icon {
  width: 34px;
  height: 34px;
}

.tt-feature-desc-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}


.tt-feature-desc {
  font-size: 0.85rem;
  color: var(--tt-text-muted);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.small-font-size {
  font-size: 0.7rem !important;
}



/* =======================================================================
   FILTER CHIPS / SORT BAR
   ========================================================================= */

.tt-chip-bar {
  margin: 16px 0 22px;
}

.tt-chip-clear {
  background: var(--tt-red);
  color: #fff;
  border: none;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 5px;
}

.tt-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8a8a8a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 5px;
  border: none;
}

.tt-chip i {
  font-size: 0.65rem;
  cursor: pointer;
}

.tt-sort-select {
  margin-left: auto;
  background: #7c7c7c;
  color: #fff;
  border: none;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.CTA-card {
  box-shadow: var(--tt-shadow-soft);
  background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 50%, #e9e9e9 100%);
}

/* =======================================================================
   PAGE / SIDEBAR (buy-car filter layout)
   ========================================================================= */
/* ---------- Breadcrumb ---------- */
.breadcrumb-row {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(var(--bs-dark));
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Hero cards ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  height: 175px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(20, 20, 30, .08);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Sidebar shell ---------- */
.filter-sidebar {
  background: var(--card-bg);
  border-radius: 4px;
  padding: 20px 18px;
  box-shadow: 0 1px 3px rgba(20, 20, 30, .06), 0 8px 24px rgba(20, 20, 30, .04);
}

.filter-block {
  padding: 16px 0;
  border-bottom: 1px solid #EFEFEF;
}

.filter-block:first-child {
  padding-top: 0;
}

.filter-block:last-of-type {
  border-bottom: none;
}

.filter-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

/* ---------- Price range ---------- */
.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.range-track {
  position: relative;
  height: 3px;
  background: #E2E2E4;
  border-radius: 2px;
  margin: 0 3px;
}

.range-track .range-fill {
  position: absolute;
  height: 3px;
  background: var(--tt-red);
  border-radius: 2px;
}

input[type="range"].price-slider {
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

input[type="range"].price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tt-red);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--tt-red);
  cursor: pointer;
}

input[type="range"].price-slider::-moz-range-thumb {
  pointer-events: all;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tt-red);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--tt-red);
  cursor: pointer;
}

.price-caption {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-top: 10px;
}

/* ---------- AI Search ---------- */
.ai-search-box {
  background: var(--row-bg-light);
  border-radius: 4px;
  padding: 12px 12px 10px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-search-box .placeholder-text {
  color: #A9ACB2;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.ai-search-box .btn {
  align-self: flex-end;
  background: #282828 !important;
  color: #fff;
  border: none;
  /* font-size: 11px; */
  font-weight: 500;
  border-radius: 4px;
}

.ai-search-box .btn:hover {
  background: #000;
  color: #fff;
}

/* ---------- Toggle row (Outlet Name Filter) ---------- */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--row-bg-light);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: #4A4D52;
}

.toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #555555;
  cursor: pointer;
  transition: background .15s ease;
  flex-shrink: 0;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.toggle-switch.on {
  background: var(--tt-red);
}

.toggle-switch.on::after {
  left: 18px;
}

/* ---------- Radio / checkbox row group (rounded gray card) ---------- */
.row-group {
  background: var(--row-bg-light);
  border-radius: 4px;
  overflow: hidden;
  max-height: 132px;
  overflow-y: auto;
}

.row-group::-webkit-scrollbar {
  width: 4px;
}

.row-group::-webkit-scrollbar-thumb {
  background: #C7C7C9;
  border-radius: 2px;
}

.opt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--divider);
  font-size: 12.5px;
  color: #4A4D52;
  cursor: pointer;
  font-weight: 400;
}

.opt-row:last-child {
  border-bottom: none;
}

.opt-row .opt-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* custom radio */
/* Custom Radio */
.radio-dot {
  width: 18px;
  height: 18px;
  border: 1.5px solid #B9BABD;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.opt-row.checked .radio-dot {
  border-color: var(--tt-red);
  background: var(--tt-red);
}

.opt-row.checked .radio-dot::after {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* custom square checkbox */
.check-box {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.5px solid #B9BABD;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opt-row.checked .check-box {
  border-color: var(--tt-red);
  background: var(--tt-red);
}

.opt-row.checked .check-box::after {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.opt-row .fa-chevron-down {
  font-size: 10px;
  color: var(--muted);
}

/* ---------- Body type 2x2 grid ---------- */
.body-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.body-type-item {
  background: var(--row-bg-light);
  padding: 14px 8px 10px;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.body-type-item.active {
  border-color: var(--tt-red);
  background: #FCEBEC;
}

.body-type-item svg {
  width: 56px;
  height: auto;
  display: block;
  margin: 0 auto 6px;
}

.body-type-item .car-fill {
  fill: #8B8F96;
}

.body-type-item.active .car-fill {
  fill: var(--tt-red);
}

.body-type-item span {
  font-size: 11.5px;
  color: #5A5D62;
  font-weight: 500;
}

/* ---------- Color swatches ---------- */
.color-strip {
  display: flex;
  gap: 8px;
}

.color-swatch {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  border: 1px solid #E4E4E6;
}

.color-swatch.active::after {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, .6);
}

.color-swatch[data-color="white"].active::after {
  color: #333;
  text-shadow: none;
}

/* ---------- Bottom pill list (Features / Seats / RTO / Owner / Outlets) ---------- */
.pill-list {
  background: var(--row-bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.pill-list>div {
  border-bottom: 1px solid #fff;
}

.pill-list>div:last-child {
  border-bottom: none;
}

.pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 12.5px;
  color: #4A4D52;
  cursor: pointer;
  font-weight: 400;
}

.pill-row .fa-chevron-down {
  font-size: 10px;
  color: var(--muted);
  transition: transform .2s ease;
}

.pill-row.open .fa-chevron-down {
  transform: rotate(180deg);
}

.pill-body {
  display: none;
  padding: 0 14px 10px;
}

.pill-body.show {
  display: block;
}

.pill-body .opt-row {
  padding: 8px 0;
  border-bottom: 1px solid #E2E2E4;
  background: transparent;
}

.pill-body .opt-row:last-child {
  border-bottom: none;
}

/* =======================================================================
   MOBILE FILTER DRAWER (default/desktop state — inert until <992px)
   The JS already toggles these classes; this is the styling that was
   missing, which is why the drawer never actually worked on phones.
   ========================================================================= */
.filter-overlay {
  display: none;
}

.filter-sidebar-mobile-head,
.filter-apply-btn {
  display: none;
}

.tt-filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #dcdcdc;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 5px;
}


/* product detail */
.tt-certified-badge {
  height: 30px;
  width: auto;
}

.tt-360-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.tt-crown-badge {
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe27a 0%, #f5c94d 55%, #dfa62a 100%);
  color: #7a4b00;
  font-size: 1.05rem;
  box-shadow: var(--tt-shadow-sm);
}

.tt-360-pill {
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px 6px 16px;
  border-radius: var(--tt-radius-pill);
}

.tt-thumb {
  width: 175px;
  height: 115px;
  object-fit: cover;
  border-radius: var(--tt-card-radius);
  cursor: pointer;
  border: 2px solid transparent;
  flex: 0 0 auto;
  opacity: 0.85;
  transition: border-color .2s ease, opacity .2s ease;
}

.tt-thumb:hover {
  opacity: 1;
}

.tt-thumb.active {
  opacity: 1;
}

.tt-thumb-next-btn {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background: #000000ba;
  color: #fff;
}

.tt-thumb-next-btn:hover {
  background: #000;
}


.tt-thumb-prev-btn {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background: #000000ba;
  color: #fff;
  z-index: 2;
}

.tt-thumb-prev-btn:hover {
  background: #000;
}

.tt-thumb-next-btn {
  z-index: 2;
}

.tt-spec-chip {
  background: var(--row-bg-light);
  color: var(--tt-text-dark);
  font-size: 0.62rem;
  font-weight: 600;
}

.tt-btn-outline-red {
  background: #fff;
  color: var(--tt-red);
  border: 1.5px solid var(--tt-red);
}

.tt-btn-outline-red:hover {
  background: var(--tt-red);
  color: #fff;
}

.tt-eval-tabs {
  background: #A7A7A7;
  border-radius: var(--tt-card-radius) var(--tt-card-radius) 0 0;
  padding: 10px 14px;
  gap: 6px;
}

.tt-eval-tabs .nav-link {
  color: var(--tt-text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tt-eval-tabs .nav-link.active {
  background: var(--tt-red);
  color: #fff;
  box-shadow: var(--tt-shadow-sm);
}

.tt-eval-content {
  background: #fff;
  border-radius: 0 0 var(--tt-card-radius) var(--tt-card-radius);
  box-shadow: var(--tt-shadow-soft);
}

.tt-eval-check {
  color: #22c55e;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tt-eval-label {
  font-weight: 700;
  color: var(--tt-text-dark);
}

.tt-eval-desc {
  font-size: 0.85rem;
  color: var(--tt-text-muted);
}

.tt-spec-tabs .nav-link {
  background: var(--tt-light-grey);
  color: var(--tt-text-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-align: left;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: background .2s ease, color .2s ease;
}

.tt-spec-tabs .nav-link.active {
  background: var(--tt-red);
  color: #fff;
}

.tt-spec-content {
  background: var(--tt-gradient-80);
  /* border-radius: var(--tt-card-radius); */
  box-shadow: var(--tt-shadow-sm);
  border: 1px solid var(--tt-light-grey);
}

.tt-spec-row {
  border-bottom: 1px solid var(--tt-light-grey);
  gap: 12px;
}

.tt-spec-label {
  font-size: 0.9rem;
}

.tt-spec-value {
  font-weight: 700;
  color: var(--tt-text-dark);
  font-size: 0.9rem;
  text-align: right;
}

/* emi calculator */
/* ---------- Calculator card ---------- */
.emi-wrap {
  max-width: 900px;
  margin: 2.25rem auto;
  padding: 0 1rem;
}

.emi-card {
  background: var(--card-bg);
  border: 2px solid var(--tt-light-grey);
  overflow: hidden;
}

.emi-title {
  text-align: center;
  font-size: 1.15rem;
  padding: 1rem 1rem .85rem;
}

.left-panel {
  background: #fff;
  padding: 1.4rem 1.4rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.right-panel {
  padding: 1.4rem 1.25rem 1.5rem 1.25rem;
  background: var(--tt-gradient-bg-55);
}

.emi-from-label {
  font-size: .78rem;
  color: #444;
  margin-bottom: .15rem;
}

.emi-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--tt-red);
  line-height: 1;
}

.emi-amount .per-month {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-left: .25rem;
}

.emi-divider {
  border-top: 1px solid var(--tt-light-grey);
  margin: .85rem 0 .75rem;
}

.gauge-wrap {
  text-align: center;
  margin-bottom: .5rem;
}

.legend-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  padding: .3rem 0;
}

.legend-row .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: .4rem;
}

.legend-row.principal .dot {
  background: #b7b7b7;
}

.legend-row.interest .dot {
  background: var(--tt-red);
}

.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #a7a7a7;
  color: #222;
  font-size: .8rem;
  padding: .6rem 1.4rem;
  margin: .75rem -1.4rem 0;
  font-weight: 600;

  margin-top: auto;
}

/* ---------- Sliders ---------- */
.slider-group {
  margin-bottom: 1.1rem;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.slider-label-row .val {
  font-weight: 700;
}

/* Scoped to .emi-range only, so it won't touch other range inputs on the site */
.emi-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--tt-dark-gray);
  outline: none;
  margin: .2rem 0;
}

.emi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tt-red);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
}

.emi-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tt-red);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
}

.range-minmax {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: var(--gray-text);
  margin-top: .1rem;
}

.disclaimer-rule {
  border-top: 1px solid var(--tt-light-grey);
  margin: 1.1rem 0 .7rem;
}

.disclaimer {
  font-size: .68rem;
  color: #555;
  line-height: 1.5;
}



/* ---------- faq page ---------- */

.divider {
  width: 100%;
  height: 2px;
  background: #00000091;
  margin: 20px 0;
}

/* ---------- FAQ item ---------- */
.faq-item {
  display: flex;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid #C4C4C4;
  align-items: flex-start;
}

.faq-item:last-child {
  border-bottom: none;
}

.num-box {
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
  color: #828282;
}

.faq-body {
  flex: 1 1 auto;
}

.how_it_work_hero {
  height: 80vh;
}

.how_it_work_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how_it_work_outer {
  position: relative;
  margin-top: -140px;
  z-index: 2;
}

.how_it_work_toggle_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: max-content;
  max-width: 90%;
}

.how_it_work_toggle {
  display: flex;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.how_it_work_toggle_btn {
  border: 0;
  padding: 10px 25px;
  font-weight: 700;
  white-space: nowrap;
  background: transparent;
  color: #333;
  transition: all 0.2s ease;
}

.how_it_work_toggle_btn.active {
  background: var(--tt-red);
  color: #fff;
}

.how_it_work_toggle_panel {
  display: none;
}

.how_it_work_toggle_panel.active {
  display: block;
}

.how_it_work_intro {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.how_it_work_step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.how_it_work_step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
      #eeeeee 0%,
      #d5d5d5 35%,
      #aaaaaa 70%,
      #888888 100%);
}

.how_it_work_step:last-child {
  border-bottom: 0;
}

.how_it_work_step_number {
  flex: 0 0 70px;
  min-width: 70px;
  color: #cccccc;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 2px #707070;
}

.how_it_work_step_content {
  flex: 1 1 auto;
  min-width: 0;
}

.how_it_work_step_title {
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.how_it_work_step_desc {
  color: #555;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.how_it_work_step_icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex: 0 0 90px;
}

.how_it_work_action_btn {
  font-size: 18px;
  font-weight: 700;
  padding: 14px 48px;
}

.how_it_work_buy_btn {
  background: #2b2b2b;
  border-color: #2b2b2b;
  color: #fff;
}

.how_it_work_buy_btn:hover {
  background: var(--tt-red);
  border-color: var(--tt-red);
  color: #fff;
}

.how_it_work_sell_btn {
  background: #6b6f73;
  border-color: #6b6f73;
  color: #fff;
}

.how_it_work_sell_btn:hover {
  background: var(--tt-red);
  border-color: var(--tt-red);
  color: #fff;
}


.tt-loc-card.tt-buysell-card {
  padding: 34px 22px 30px;
}

.tt-loc-back-btn {
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
  font-size: 1.15rem;
  color: var(--tt-text-dark);
}

.tt-loc-back-btn:hover {
  color: var(--tt-red);
}

.tt-loc-step {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tt-text-muted);
}

.tt-loc-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--tt-text-dark);
  margin-bottom: 1.6rem;
}

.tt-loc-search {
  position: relative;
}

.tt-loc-search-input {
  height: 52px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--tt-gray-bg);
  padding: 0 44px 0 18px;
  font-size: 0.95rem;
}

.tt-loc-search-input:focus {
  background: #fff !important;
  border-color: var(--tt-light-grey) !important;
  box-shadow: none !important;
}

.tt-loc-search i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tt-text-muted);
  pointer-events: none;
}

.tt-loc-grid-wrap {
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  margin-right: 0;
}

.tt-loc-grid-wrap::-webkit-scrollbar {
  width: 5px;
}

.tt-loc-grid-wrap::-webkit-scrollbar-thumb {
  background: #c7c7c9;
  border-radius: 3px;
}

.tt-loc-item {
  display: block;
  width: 100%;
  background: var(--tt-gradient-80);
  border: 1px solid var(--tt-light-grey);
  border-radius: 8px;
  padding: 17px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--tt-text-dark);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tt-loc-item:hover,
.tt-loc-item.is-active {
  background: var(--tt-red);
  border-color: var(--tt-red);
  color: #fff;
}

.tt-loc-grid-wrap .card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.tt-loc-grid-wrap .card img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.tt-loc-feature {
  color: var(--tt-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 130px;
}

.tt-loc-feature i {
  font-size: 1.7rem;
  color: var(--tt-dark-gray);
  margin-bottom: 10px;
  display: block;
}

.tt-loc-feature:hover i {
  color: var(--tt-red);
}

#locGrid .card {
  background: linear-gradient(0deg, #c3c3c3 0%, #e9e9e9 55%, #ffffff 100%);
  border-color: #bebebe;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

/* Hover: white bg + red border */
#locGrid a:hover .card {
  background: #ffffff;
  border-color: var(--tt-red);
}

/* Selected/active brand */
#locGrid a.is-active .card {
  background: #ffffff;
  border-color: var(--tt-red);
  border-width: 2px;
}




.page-sq {
  width: 40px;
  height: 40px;
  font-weight: 600;
  font-size: 0.95rem;
}

.cardimg {
  width: 100%;
  height: 130px;
}

#bookAppointmentModal .modal-content {
  background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 50%, #e9e9e9 100%) !important;
}

.form-select:focus {
  border-color: #eb0a1e36 !important;
  box-shadow: 0 0 0 .25rem rgb(235 10 30 / 15%) !important;
}

.page-item:focus {
  border-color: #eb0a1e36 !important;
  box-shadow: 0 0 0 .25rem rgb(235 10 30 / 15%) !important;
}

.btn-close:focus {
  box-shadow: 0 0 0 .25rem rgb(235 10 30 / 15%) !important;
}

.pagination-border {
  border: 2px solid #A2A2A2;
}

.pagination-border-right {
  border-right: 2px solid #A2A2A2 !important;
}

.pagination-border-left {
  border-left: 2px solid #A2A2A2 !important;
}


 .tt-stepper-track {
            position: relative;
            height: 44px;
        }

        .tt-line-bg,
        .tt-line-fg {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            transform: translateY(-50%);
            border-radius: 2px;
        }

        .tt-line-bg {
            background: #c9c9c9;
            z-index: 1;
        }

        .tt-line-fg {
            background: var(--bs-danger);
            z-index: 2;
        }

        .tt-step-row {
            position: relative;
            z-index: 3;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 66%;
            height: 100%;
            margin: 0 auto;
        }

        .tt-step-sq {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: #b3b3b3;
            background: #d9d9d9;
        }

        .tt-step-sq.active {
            color: #fff;
            background: var(--bs-danger);
            box-shadow: 0 3px 8px rgba(235, 10, 30, .35);
        }

        .tt-step-labels {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 66%;
            margin: 10px auto 0;
        }

        .tt-step-labels span {
            width: 40px;
            font-size: .8rem;
            color: #777;
            text-align: center;
            white-space: nowrap;
        }

        .tt-step-labels span.active {
            color: #333;
            font-weight: 600;
        }

        .legend-dot {
            width: 8px;
            height: 8px;
        }

        .emi-card .bg {
            background: #e3e3e3;
            display: flex;
            flex-direction: column;
        }

        .emi-card .tt-total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(90deg, #FFFFFF 0%, #D7D7D7 100%);
            color: #222;
            font-size: .8rem;
            padding: 1.6rem 1.4rem;
            margin: .75rem -1.4rem -0.4rem;
            font-weight: 600;
        }


        .border-secondary {
            border-color: #787878 !important;
        }

        .form-check-input:checked {
            background-color: var(--tt-red) !important;
            border-color: var(--tt-red) !important;
        }

        /* ---- Step-2 form: compact sizing + exact grays sampled from the design ---- */
        .tt-page-gray .card {
            background: linear-gradient(0deg, #E6E6E6 0%, #ffffff 100%);
        }

        .tt-panel-gray {
            background: linear-gradient(90deg, #D9D9D9 0%, #D3D3D3 100%);
        }

        .tt-form-compact .form-control,
        .tt-form-compact .form-select,
        .tt-form-compact .input-group-text {
            font-size: .78rem;
            padding: .65rem .75rem;
        }

        .tt-form-compact .form-label {
            font-size: .72rem;
            margin-bottom: .25rem;
        }

        .tt-form-compact .form-check-label {
            font-size: .75rem;
        }

        .tt-form-compact .form-check-input {
            margin-top: .2rem;
        }

        .tt-icon-sq {
            background: #747474 !important;
            color: #fff;
        }

        .tt-gender-select {
            background: #cfcfcf !important;
        }

        .tt-btn-gray {
            background: #747474;
            border-color: #747474;
            color: #fff;
            font-size: .78rem;
            padding: .55rem 2rem;
            border-radius: 50px;
        }

        .tt-btn-gray:hover,
        .tt-btn-gray:focus {
            background: #747474;
            border-color: #747474;
            color: #fff;
        }


  .booking-box {
            background-color: #fbeceb;
            border: 1px solid #f3c9c8;
            border-radius: 6px;
        }

        .total-box {
            background-color: #f5f5f5;
            border: 1px solid #e2e2e2;
            border-radius: 6px;
        }

        .price-row {
            font-size: .77rem;
            padding: 5px 0;
        }

        /* Accordion - simple, no bg, custom chevron */
        #paymentAccordion .accordion-button {
            background-color: transparent;
            box-shadow: none;
        }

        #paymentAccordion .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: inherit;
            box-shadow: none;
        }

        #paymentAccordion .accordion-button:focus {
            box-shadow: none;
        }

        /* Bootstrap ka default double-chevron icon hata do */
        #paymentAccordion .accordion-button::after {
            display: none;
        }

        /* Apna Font Awesome chevron */
        #paymentAccordion .accordion-chevron {
            color: #6c757d;
            font-size: .85rem;
            transition: transform .2s ease-in-out;
        }

        /* Closed state me right ki taraf rotate ho jaye */
        #paymentAccordion .accordion-button.collapsed .accordion-chevron {
            transform: rotate(-90deg);
        }
        .card-bg{
            background: #e3e3e3 !important;
        }
        
        /* buy car page slider */
.tt-promo-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 12px;
}

.tt-promo-track {
  display: flex;
  gap: 16px;
  cursor: grab;
  touch-action: pan-y;
  will-change: transform;
}

.tt-promo-track.dragging {
  cursor: grabbing;
}

.tt-promo-slide {
  flex: 0 0 calc(50% - 8px);
  height: 175px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20, 20, 30, .08);
}

.tt-promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.tt-promo-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.tt-promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}

.tt-promo-dot.active {
  background: var(--tt-red);
  width: 18px;
  border-radius: 4px;
}


.oneval-card-outer{
  z-index: 2;
  margin-top: -90px;   
}
.accordion-button:focus {
    z-index: 2; !important
}
.compare-hero {
    height: 46vw;
    min-height: 320px;
    max-height: 520px;
    background-color: #cfd6db;
    /* fallback while image loads */
}

.compare-panel-wrap {
    margin-top: -90px;
}

.tt-gradient-bg {
  background: var(--tt-gradient-bg-new) !important;
}
/* ===================== RESPONSIVE ===================== */
/* ================================
   1. EXTRA SMALL PHONES (up to 576px)
   ================================ */

@media (max-width: 400px) {
  .tt-callback-avatar {
    width: 110px;
    height: 90px;
  }

  .body-type-item svg {
    width: 44px;
  }

  .body-type-item span {
    font-size: 10.5px;
  }
}

@media (max-width: 576px) {

  /*.tt-hero {*/
  /*  min-height: 29vh !important;*/
  /*}*/
  .tt-search-box {
    width: 100%;
  }

  .tt-search-box .form-control {
    min-width: 0;
  }

  .tt-info-boxes {
    bottom: 120px;
  }

  .tt-testimonial {
    padding: 30px 16px 40px;
  }

  .tt-testimonial-title {
    font-size: 1.4rem;
  }

  .tt-badge-owned {
    font-size: 0.5rem;
    padding: 1px 6px;
  }

  .tt-stat-label {
    font-size: 0.8rem;
  }

  .tt-cara-bar {
    bottom: -30% !important;
  }

  .tt-cara-inner {
    padding: 3px 12px !important;
  }

  .tt-hero-img {
    height: 230px;
  }

  .tt-thumb {
    width: 100px;
    height: 74px;
  }

  .tt-crown-badge {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .tt-certified-badge {
    height: 24px;
  }

  .tt-360-pill {
    font-size: 0.68rem;
    padding: 5px 10px 5px 12px;
  }

  .faq-box {
    padding: 1.25rem 1.1rem 1.5rem;
    margin: 1rem .5rem;
  }

  .num-box {
    width: 2.1rem;
    height: 2.1rem;
    font-size: .8rem;
  }

  .faq-item {
    gap: .7rem;
  }

  .how_it_work_hero {
    height: 40vh !important;
  }

  .how_it_work_toggle_wrap {
    max-width: calc(100% - 20px);
  }

  .how_it_work_toggle {
    padding: 4px;
  }

  .how_it_work_toggle_btn {
    padding: 11px 7px;
    font-size: 11px;
  }

  .how_it_work_intro {
    font-size: 14px;
  }

  .how_it_work_step {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    gap: 10px;
    align-items: start;
    padding: 20px 0;
  }

  .how_it_work_step_number {
    min-width: 45px;
    font-size: 42px;
  }

  .how_it_work_step_desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .how_it_work_step_icon {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
  }

  .tt-loc-title {
    font-size: 1.15rem;
  }


  .cardimg {
    height: 160px;
  }

  .tt-step-row,
  .tt-step-labels {
      width: 75%;
  }

  .tt-step-sq {
      width: 32px;
      height: 32px;
      min-width: 32px;
      font-size: .9rem;
      border-radius: 8px;
  }

  .tt-step-labels span {
      font-size: .62rem;
  }

  .tt-btn-gray {
                padding: .5rem 1.25rem;
            }

            .oneval-card-outer{
    margin-top: -40px;
  }
  
  .tt-arrow{
      width:30px;
      height:30px;
  }
  .make-label{
      font-size:0.7rem;
  }
  .make-value{
     font-size:0.87rem; 
  }
  .feature-title{
      font-size:1rem !important;
  }
}

/* ================================
   2. 576px – 767.98px (small phones landscape)
   ================================ */
@media (min-width: 576px) and (max-width: 768px) {
  /*.tt-hero {*/
  /*  min-height: 50vh;*/
  /*}*/

  .tt-cara-bar {
    bottom: -15% !important;
  }

  .tt-cara-inner {
    padding: 3px 12px !important;
  }
}

@media (min-width: 577px) and (max-width: 991.98px){
  .oneval-card-outer{
    margin-top: -60px;
  }
}

@media (max-width: 767.98px) {
    
    .evaluation_banner{
        height:190px;
        object-fit:cover;
    }
    .tt-location-row{
        width:100%;
    }
  .tt-cara-inner {
    padding: 3px 12px !important;
  }

  .tt-faq-title {
    font-size: 1.6rem;
  }

  .tt-faq-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tt-faq-search {
    max-width: 100%;
    width: 100%;
  }

  .tt-footer {
    padding: 40px 0 30px;
    text-align: left;
  }

  .tt-footer-desc {
    max-width: 100%;
  }

  .tt-footer-row>div {
    flex: 1 1 100%;
  }

  .panel {
    padding: 36px 20px 32px;
  }

  .tt-testi-card {
    flex: 0 0 100%;
    width: 100%;
    height: 600px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }

  .tt-hero-side {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0 12px;
  }

  .tt-social-sidebar {
    flex-direction: row;
    gap: 8px;
  }

  .tt-social-icon {
    width: 34px;
    height: 34px;
  }

  .tt-info-boxes {
    display: none;
  }

  .tt-hero-cta {
    position: static;
    padding: 14px 0 0;
  }
  
  .tt-hero-cta .btn{
      width:100%;
  }

  .tt-eyebrow {
    font-size: 1.3rem;
    
  }

  .tt-heading {
    font-size: 1.4rem;
  }

  .tt-stat-number {
    font-size: 1.4rem;
  }

  .toggle-wrap {
    transform: translateY(-55%);
  }

  .toggle button {
    padding: 8px 14px;
    font-size: 14px !important;
  }

  .tt-fixed-sidebar {
    top: 40%;
    bottom: 20px;
    transform: none;
  }

  .tt-carousel {
    padding: 0 4px;
  }

  .tt-section-img {
    height: 200px;
  }

  .tt-play-btn {
    width: 50px;
    height: 50px;
  }

  .tt-chip-bar {
    margin: 12px 0 16px;
    gap: 8px;
  }

  .tt-chip-bar>.d-flex {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .tt-chip-bar>.d-flex::-webkit-scrollbar {
    display: none;
  }

  .tt-chip-clear,
  .tt-chip,
  .tt-filter-toggle-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .tt-sort-select {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  /* Larger touch targets on the price slider thumbs */
  input[type="range"].price-slider::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
  }

  input[type="range"].price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
  }

  .tt-eval-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
  }

  .tt-eval-tabs::-webkit-scrollbar {
    display: none;
  }

  .tt-eval-tabs .nav-link {
    flex-shrink: 0;
  }

  .how_it_work_hero {
    height: 50vh !important;
  }

  .how_it_work_toggle_wrap {
    max-width: calc(100% - 30px);
  }

  .how_it_work_toggle {
    width: 100%;
  }

  .how_it_work_toggle_btn {
    min-width: 0;
    flex: 1 1 50%;
    padding: 12px 16px;
    font-size: 13px;
  }


  .how_it_work_intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .how_it_work_step {
    gap: 16px;
    padding: 22px 0;
  }

  .how_it_work_step_number {
    flex-basis: 50px;
    min-width: 50px;
    font-size: 50px;
    -webkit-text-stroke: 1.5px #999;
  }


  .how_it_work_step_desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .how_it_work_step_icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .how_it_work_action_btn {
    width: 100%;
    font-size: 16px;
    padding: 12px 25px;
  }

  /*.tt-loc-card.tt-buysell-card {*/
  /*  padding: 44px 40px 40px;*/
  /*}*/
  
.compare-hero {
    height: 60vw;
    min-height: 260px;
}

.compare-panel-wrap {
    margin-top: -60px;
}

}

@media (min-width: 769px) and (max-width:850px) {
  .tt-cara-bar {
    bottom: -15% !important;
  }
}

/* ================================
   4. up to 900px
   ================================ */
@media (max-width: 900px) {
  .tt-arrow-left {
    left: 6px;
  }

  .tt-arrow-right {
    right: 6px;
  }

  .tt-footer-row {
    gap: 30px;
  }

  .tt-footer-row>div {
    flex: 1 1 45%;
  }

  .tt-footer-col-brand {
    flex: 1 1 100% !important;
  }
}

/* ================================
   5. up to 1100px
   ================================ */
@media (max-width: 1100px) {
  .tt-testimonial {
    padding: 45px 30px 60px;
  }
}

/* ================================
   6. up to 991.98px (below lg — header/nav)
   ================================ */
@media (max-width: 991.98px) {
    
    /* buy slider */
  .tt-promo-slide {
    flex: 0 0 100%;
    height: 150px;
  }

  .tt-header .container-fluid,
  .tt-header .container {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .tt-header .navbar-collapse {
    gap: 0;
  }

  .tt-header .navbar-brand {
    margin-right: 0;
  }

  .tt-logo-img {
    width: 140px;
  }

  .tt-header .navbar-collapse.show,
  .tt-header .navbar-collapse.collapsing {
    padding: 14px 4px 18px;
    border-top: 1px solid #eee;
    margin-top: 10px;
  }

  .offcanvas.offcanvas-lg {
    width: 280px;
  }

  .tt-location-row,
  .tt-search-collapse,
  .tt-main-links,
  .tt-right-links {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid #f0f0f0;
  }

  .tt-location-dropdown {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tt-location-dropdown .dropdown-toggle,
  .tt-search-box {
    width: 100%;
    max-width: 100% !important;
  }

  .tt-search-box .form-control {
    width: 100%;
  }

  .tt-search-collapse {
    padding-top: 0;
  }

  .tt-main-links,
  .tt-right-links {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 10px;
    margin-left: 0 !important;
  }

  /* Nav links - full width tap area + light divider line under each */
  .tt-main-links .nav-item {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
  }

  .tt-main-links .nav-item:last-child {
    border-bottom: none;
  }

  .tt-main-links .nav-link,
  .tt-right-links .nav-link {
    font-size: 0.85rem;
    padding: 6px 4px;
  }

  .tt-main-links .nav-link {
    width: 100%;
    display: block;
  }

  /* "More" submenu - inline/static instead of an absolute overlay */
  .tt-main-links .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0 0 6px 12px;
    margin-top: 0;
  }

  .tt-main-links .dropdown-item {
    width: 100%;
    white-space: normal;
  }

  .tt-right-links {
    flex-direction: row !important;
    justify-content: space-between;
    border-bottom: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
  }

  .tt-right-links .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  /* Product detail page - price/EMI/buttons fixed at the bottom */
  .tt-price-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: #fff;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
  }

  .tt-price-action-bar .row {
    margin-bottom: 0 !important;
  }

  body.tt-product-detail-page {
    padding-bottom: 150px;
  }

  .tt-hero-slide {
    padding: 24px 50px 60px;
  }

  .tt-hero-text {
    text-align: center;
  }

  .tt-hero-text h1 {
    font-size: 1.8rem;
  }

  .tt-feature-item .tt-feature-desc-wrap {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
  }

  .tt-feature-item .tt-feature-icon-box {
    background: #fff;
    border-color: var(--tt-light-grey);
  }

  .tt-feature-item .tt-feature-label {
    color: var(--tt-red);
  }

  /* optional: click se koi visual toggle na ho, cursor bhi normal rakh do */
  .tt-feature-item {
    cursor: default;
    border-color: var(--tt-light-grey);
  }

  .tt-feature-desc {
    font-size: 0.68rem;
  }

  .tt-info-box {
    font-size: 0.55rem;
  }

  .filter-col {
    width: 0;
    max-width: 0;
    padding: 0;
    margin: 0;
    flex: 0 0 0;
  }

  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    z-index: 1055;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 18px 16px 90px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    background:#ffffff;
  }

  .filter-sidebar.drawer-open {
    transform: translateX(0);
  }

  .filter-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .filter-overlay.show {
    opacity: 1;
    pointer-events: all;
  }

  body.tt-drawer-locked {
    overflow: hidden;
    height: 100vh;
  }

  .filter-sidebar-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    padding-bottom: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #EFEFEF;
    position: sticky;
    top: -18px;
    background: #fff;
    padding-top: 4px;
    z-index:99999;
  }

  .filter-close-btn {
    background: var(--row-bg-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-apply-btn {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1056;
    background: var(--tt-red);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.15);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    height: 150px;
  }

  .how_it_work_hero {
    height: 60vh !important;
  }


  .how_it_work_toggle_btn {
    /*min-width: 180px;*/
    padding: 10px;
    font-size: 15px;
  }


  .how_it_work_intro {
    font-size: 16px;
  }

  .how_it_work_step {
    gap: 20px;
    padding: 24px 0;
  }

  .how_it_work_step_number {
    flex-basis: 60px;
    min-width: 60px;
    font-size: 60px;
  }


  .how_it_work_step_desc {
    font-size: 16px;
  }

  .how_it_work_step_icon {
    width: 75px;
    height: 75px;
    flex-basis: 75px;
  }
   .oneval-card-outer{
    margin-top: -60px;
  }
  
   #specTab.tt-spec-tabs {
    /* thoda extra bottom space taaki scrollbar content ko overlap na kare */
    padding-bottom: 10px;
  }

  /* Webkit browsers (Chrome, Safari, Edge, most mobile browsers) */
  #specTab.tt-spec-tabs::-webkit-scrollbar {
    height: 4px;           /* thin/halki scrollbar */
  }

  #specTab.tt-spec-tabs::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 4px;
  }

  #specTab.tt-spec-tabs::-webkit-scrollbar-thumb {
    background: var(--tt-red);
    border-radius: 4px;
  }

  /* Firefox */
  #specTab.tt-spec-tabs {
    scrollbar-width: thin;
    scrollbar-color: var(--tt-red) #eee;
  }

}

/* ================================
   7. TABLET — 768px to 991.98px
   ================================ */
@media (min-width: 768px) and (max-width: 991.98px) {

  /*.tt-hero {*/
  /*  min-height: 50vh;*/
  /*}*/
  .tt-hero-img,
  .carousel-item.ratio {
    height: 320px;
  }

  .tt-hero-side {
    top: auto;
    bottom: 90px;
    transform: none;
  }

  .tt-info-box {
    width: 170px;
    font-size: 0.6rem;
  }

  .tt-feature-icon-box {
    width: 64px;
    height: 64px;
  }

  .tt-eyebrow {
    font-size: 1.4rem;
  }

  .tt-heading {
    font-size: 1.55rem;
  }

  .tt-testi-card {
    flex: 0 0 calc((100% - 28px) / 2);
    width: calc((100% - 28px) / 2);
    height: 480px;
  }

  .tt-arrow-left {
    left: 0%;
  }

  .tt-arrow-right {
    right: 0%;
  }

  .tt-carousel {
    padding: 0 8px;
  }

  .tt-hero-img,
  .carousel-item.ratio {
    height: 320px;
  }
}

/* ================================
   8. DESKTOP — 992px and up
   ================================ */
@media (min-width: 992px) {
  .tt-testi-card {
    flex: 0 0 calc((100% - 56px) / 3);
    height: 550px;
  }



  .right_divider,
  .tt-product-sidebar {
    align-self: flex-start;
  }

  /* Line ab col-lg-8 ke RIGHT edge par */
  .right_divider {
    border-right: 2px solid var(--tt-faq-border);
    padding-right: 20px;
    /* line aur sidebar ke beech spacing */
  }

  .tt-product-sidebar {
    position: sticky;
    top: 20px;
    padding-left: 28px;
    /* line se thoda gap sidebar shuru hone se pehle */
  }
}

/* ================================
   9. 992px to 1199.98px
   ================================ */
@media (min-width: 992px) and (max-width: 1150px) {
  /*.tt-hero {*/
  /*  min-height: 75vh !important;*/
  /*}*/
}

/*@media (min-width: 1201px) and (max-width: 1280px) {*/
/*    .tt-hero {*/
/*    min-height: 75vh !important;*/
/*  }*/
/*}*/
/* ================================
   10. LARGE DESKTOP — 1200px and up
   ================================ */
@media (min-width: 1200px) {

  /*.tt-hero {*/
  /*  min-height:90vh !important;*/
  /*}*/
  .tt-testi-card {
    flex: 0 0 calc((100% - 56px) / 3);
    width: calc((100% - 56px) / 3);
    height: 500px;
  }

  /*.tt-cara-bar {*/
  /*  position: absolute;*/
  /*  left: 22%;*/
  /*  bottom: -4%; */
  /*  width: 100%;*/
  /*  max-width: 700px;*/
  /*}*/
  .tt-faq-search {
    flex: 1 1 380px;
    max-width: 500px;
  }

  .tt-eyebrow {
    font-size: 1.4rem;
  }

  /*.container{*/
  /*    max-width:999px;*/
  /*}*/
}

@media (min-width: 1400px) {

  /*  .tt-hero {*/
  /*  min-height:88vh !important;*/
  /*}*/
  .tt-testi-card {
    flex: 0 0 calc((100% - 56px) / 3);
    width: calc((100% - 56px) / 3);
    height: 550px;
  }

  /*.tt-cara-bar {*/
  /*   position: absolute;*/
  /*  left: 28%;*/
  /*  bottom: -4%; */
  /*  width: 100%;*/
  /*  max-width: 700px;*/
  /*}*/
  .tt-faq-search {
    flex: 1 1 380px;
    max-width: 500px;
  }

  /*.container{*/
  /*    max-width:1199px;*/
  /*}*/
}

 .tt-colour-item {
            display: flex;
            align-items: center;
            gap: 14px;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            padding: 12px 16px;
            background: #ffffff;
            text-decoration: none;
            transition: box-shadow .15s ease, border-color .15s ease;
        }

        .tt-colour-item:hover {
            background: #e02127;
            border-color: #e02127;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
        }

        .tt-colour-item:hover .tt-colour-label {
            color: #ffffff;
        }

        .tt-colour-swatch {
            width: 88px;
            height: 40px;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .tt-colour-label {
            font-weight: 700;
            letter-spacing: .3px;
            text-transform: uppercase;
            color: #1a1a1a;
            font-size: .95rem;
        }
        
        
        /* =========================================================
   One Valuation Page — append to style.css
   Uses existing design tokens (--tt-gradient-80, --tt-red,
   --tt-card-radius) so it matches the rest of the site.
   ========================================================= */

/* ---------- Condition buttons (Fair / Good / Excellent) ---------- */
.oneval-card-outer [data-condition] {
    background: var(--tt-gradient-80);
    border: 1px solid var(--tt-light-grey) !important;
    color: var(--tt-text-dark);
    transition: background 0.2s ease, border-color 0.2s ease;
    border-radius: var(--tt-card-radius);
}

.oneval-card-outer [data-condition]:hover {
    background: var(--tt-gradient-bg-55);
}

/* Selected state (matches "GOOD" in the reference) */
.oneval-card-outer [data-condition].active {
    background: linear-gradient(180deg, #fdeceb 0%, #fbdad8 100%);
    border-color: var(--tt-red) !important;
    color: var(--tt-red);
}

/* ---------- Gauge ---------- */
.oneval-card-outer svg.mw-100 {
    width: 60%;
    max-width: 320px;
    height: auto;
}

/* ---------- Merge into existing breakpoints ---------- */

/* Tablet (matches your 577px–991.98px block) */
@media (min-width: 577px) and (max-width: 991.98px) {
    .oneval-card-outer svg.mw-100 {
        max-width: 280px;
    }
}

/* Mobile — small condition buttons (matches your max-width:576px block) */
@media (max-width: 576px) {
    .oneval-card-outer #conditionGroup [data-condition] {
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
        font-size: 0.7rem;
    }

    .oneval-card-outer svg.mw-100 {
        max-width: 240px;
    }

    #priceLow,
    #priceHigh {
        font-size: 1.25rem !important;
    }

    #bookValuationBtn {
        font-size: 0.75rem;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
}

/* Extra small phones (matches your max-width:400px block) */
@media (max-width: 400px) {
    .oneval-card-outer #conditionGroup [data-condition] {
        padding-top: 0.45rem !important;
        padding-bottom: 0.45rem !important;
        font-size: 0.62rem;
    }

    .oneval-card-outer svg.mw-100 {
        max-width: 210px;
    }
}




.tt-featured-section {
  padding-top: 20px;
}

.tt-feat-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tt-feat-toggle {
  position: relative;
  display: flex;
  overflow: hidden;
  background: linear-gradient(100deg, #fff 0%, #e9e9e9 15%, #c3c3c3 100%);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.tt-feat-toggle-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: linear-gradient(180deg, #ee1c24 0%, #d6161d 100%);
  border-radius: 7px;
  box-shadow: 0 3px 8px rgba(214, 22, 29, 0.35);
  transition: transform 0.3s ease;
  z-index: 0;
}

.tt-feat-toggle-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 34px;
  cursor: pointer;
  border-radius: 7px;
  color: #1a1a1a;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tt-feat-toggle-btn.active {
  color: #fff;
}

.tt-car-item {
  transition: opacity 0.2s ease;
}

@media (max-width: 767.98px) {
  .tt-feat-toggle-btn {
    padding: 8px 14px;
    font-size: 14px !important;
  }
}