:root {
  --lx-accent-red: #ff0000;
  --lx-dark-gray: #333333;
  --lx-text-gray: #666666;
  --lx-bg-white: #ffffff;
}

.lx-accessories-section {
  direction: rtl;
  padding: 60px 20px;
  font-family: sans-serif; /* Replace with Lexus brand font */
  text-align: center;
  background-color: var(--lx-bg-white);
}

.lx-container {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

.lx-header {
    border-bottom: 1px #CECFD0 solid;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.lx-title {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--lx-dark-gray);
}

.lx-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--lx-text-gray);
  margin: 0 auto;
}

/* Swiper Styling */
.lx-swiper-container {
  padding: 50px 0 50px 0 !important;
}

.lx-accessory-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lx-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 417px;
    height: 318px;
    max-width: 100%;
}

.lx-image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.lx-item-name {
  font-size: 14px;
  color: var(--lx-text-gray);
  font-weight: 400;
  margin: 0;
}

/* Navigation Buttons */
.lx-nav-btn {
  background-color: var(--bs-primary);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  color: #fff !important;
}

.lx-nav-btn svg {
  width: 18px !important;
}

.lx-nav-btn::after {
  display: none;
}

/* Button */
.lx-footer {
  margin-top: 40px;
}

.lx-btn-primary {
    display: inline-block;
    background-color: #282830;
    color: #fff;
    padding: 11px 61px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.lx-btn-primary:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 767px) {
  .lx-title { font-size: 24px; }
  .lx-subtitle { font-size: 14px; }
  .lx-footer { margin-top: 0; }
}


[data-tooltip]:not([data-tooltip=""]):not(.noUiSlider):not(.noUiSlider-single) {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.header-side-btns [data-tooltip]:not([data-tooltip=""]):not(.noUiSlider):not(.noUiSlider-single) {
    flex-flow: nowrap;
    gap: 10px;
}


/* --- Core Container --- */
#page-nav {
     /* Matches the clean white bg in JPG */
}

#page-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

/* --- Parent Item: "Vehicle List" --- */
#page-nav li.has-vehicle-sub {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Right-aligned as per image */
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

#page-nav li.has-vehicle-sub > a {
    text-decoration: none;
}

/* --- The Red Chevron --- */
/* --- The Red Chevron --- */
.toyota-chevron {
    width: 8px; /* Slightly smaller for sharper look */
    height: 8px;
    margin-right: 12px;
    border-top: 2.5px solid var(--bs-secondary, var(--bs-secondary, #FF0022));
    border-right: 2.5px solid var(--bs-secondary, var(--bs-secondary, #FF0022));
    
    /* Points DOWN: 135deg */
    transform: rotate(135deg);
    
    /* Essential for smooth, non-wobbly rotation */
    transform-origin: center center; 
    
    display: inline-block;
    vertical-align: middle;
    
    /* Smooth transition for transform */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Optical fix: nudge it up slightly so it looks centered to the text */
    margin-top: -4px; 
}

/* --- Hover/Open State: Points UP --- */
/* Using -45deg creates a clockwise rotation from 135deg (total 180 turn) */
#page-nav li.has-vehicle-sub:hover .toyota-chevron,
#page-nav li.has-vehicle-sub.is-open .toyota-chevron {
    /*transform: rotate(-45deg);*/
    /* Adjust nudge for upward position so it stays on the same line */
    /*margin-top: 2px; */
}

/* --- The Sub-Menu Grid (Car Models) --- */
#page-nav .sub-menu-grid {
    display: grid;
    /* Two columns with specific width to match the airy feel of the JPG */
    grid-template-columns: repeat(2, 120px);
    column-gap: 50px;
    row-gap: 15px;
    padding: 20px;
    margin-top: 0;
    /* opacity: 1; */
    visibility: visible;
    width: auto;
    right: 0;
    width: max-content;
    border: 0;
    border-radius: 10px;
    gap: 25px;
}

#page-nav .sub-menu-grid li {
    text-align: right;
}

#page-nav .sub-menu-grid a {
    font-size: 16px;
    font-weight: 400;
    color: #4d4d4d; /* Muted grey from the image */
    text-decoration: none;
    transition: color 0.2s ease;
}

#page-nav .sub-menu-grid a:hover {
    /*color: var(--bs-secondary, var(--bs-secondary, #FF0022));*/
}

/* --- Hidden State --- */
li:not(.is-open) > .sub-menu-grid {
    display: none;
}
#page-nav .open-sub-menu{
  position: absolute;
  opacity: 0;
  visibility: hidden;
}




:root {
  --tsag-text-color: #333333;
  --tsag-link-color: #555555;
}

.tsag-container {
  direction: rtl; /* Matches the Hebrew layout */
  padding: 40px 0;
  max-width: 1750px;
  margin: 0 auto;
  width: 100%;
}

.tsag-title {
  text-align: right;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--tsag-text-color);
}

.tsag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px 15px; /* Vertical and Horizontal spacing */
}

.tsag-card {
  flex: 1 1 275px; /* Responsive: minimum 200px width */
  min-width: 275px;
  
  
   /* Aligns content to the right */
  text-align: right;
/* Frame 1215883212 */

/* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 16px;
  gap: 12px;
  max-width: 275px;
  min-height: 148px;
  background: #FDFFFF;
  border-radius: 10px;

/* Inside auto layout */
  height: auto;
}

.tsag-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--tsag-text-color);
}

.tsag-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
}

.tsag-text, .tsag-link {
  font-size: 14px;
  color: var(--tsag-link-color);
  margin-left: 10px; /* Space between text and icon */
  text-decoration: none;
}

.tsag-link:hover {
  text-decoration: underline;
}

/* Placeholder for icons - Use SVGs or Icon Fonts here */
.tsag-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}

/* --- Responsive Breakpoints --- */

/* Tablets and small desktops */
@media (max-width: 1200px) {
  .tsag-grid {
    /*justify-content: center;  Centers cards when they wrap */
    /* flex-flow: column; */
  }
  .tsag-container {
      width: 100%;
      padding: 20px;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .tsag-container {
    padding: 20px 15px;
  }
  
  .tsag-title {
    text-align: center; /* Better for mobile UX */
    font-size: 20px;
  }

  .tsag-card {
    max-width: 100%; /* Card takes full width on mobile */
    flex: 1 1 100%;
    height: auto; /* Allow height to expand if text wraps */
    /* align-items: center; */ /* Optional: Center content for mobile */
  }

  .tsag-info {
    justify-content: center; /* Center rows for mobile */
  }
  .tsag-container {
      max-width: 100%;
  }
  #page-nav li.has-vehicle-sub{
    width: 100%;
    flex-flow: column;
  }
  #page-nav a{
    width: 100%;
  }
  #page-nav .menu-item{
    width: 100%;
  }
  .toyota-chevron {
    position: absolute;
    left: 0;
    top: 40px;
  }
  #page-nav .sub-menu-grid {
      position: relative;
      width: 100%;
      left: 0;
      right: 0;
      display: flex;
      top: 0;
      background: none;
      gap: 0;
      border: 0;
      color: #fff;
      padding: 0;
      height: 0;
      opacity: 0;
      visibility: hidden;
  }

  #page-nav .is-open .sub-menu-grid{
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  #page-nav .sub-menu-grid a {
      color: #fff;
  }
}



.catalog-text-block {
    direction: rtl;
    max-width: 1750px; /* Aligned with your main container */
    margin: 80px auto 60px;
    padding: 0 16px; /* Prevents text from touching edges on mobile */
    box-sizing: border-box;
    max-width: 1165px;
}

.catalog-paragraph {
    /* Color matched to the dark grey in the image */
    color: #282830; 
    /* Font size and line-height for "pixel perfect" readability */
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    text-align: right;
    margin: 0;
    /* Smoothing for better rendering on light backgrounds */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}

/* --- Responsive Adjustments --- */

@media (max-width: 767px) {
    .catalog-paragraph {
        font-size: 16px; /* Slightly smaller for mobile readability */
        line-height: 1.6;
        text-align: center; /* Optional: provides a cleaner edge on small screens */
    }
}

@media (max-width: 480px) {
    .catalog-text-block {
        margin: 40px auto;
    }
    .catalog-paragraph {
        font-size: 15px;
    }
}

.car-item-details.border-0.justify-content-center{
  justify-content: center;
  border: 0;
}
.hiw-ruler-swiper .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    flex-flow: column;
    align-self: baseline;
    padding-bottom: 5px;
}
.hiw-ruler-swiper .swiper-slide .hiw-ruler-title{
  display: block;
  font-weight: 400;
  font-size: 16px;
}
.hiw-ruler-swiper .swiper-slide.swiper-slide-thumb-active .hiw-ruler-title{
  font-weight: bold;
}
.hiw-ruler-swiper .swiper-slide svg{
  margin: 0 auto;
}


  /* sas1 Prefix - Component Styles */
  :root {
    --sas1-red: var(--bs-secondary, var(--bs-secondary, #FF0022));
    --sas1-gray-border: #d1d1d1;
    --sas1-gray-light: #f9f9f9;
    --sas1-text: #2d2d2d;
    --sas1-radius: 10px;
    --sas1-transition: all 0.25s ease;
  }

  .sas1-container {
    max-width: 1200px;
  }

  .sas1-grid {
    display: grid;
    /* Instead of 200px, we allow the cards to shrink to 140px on small phones */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
    direction: rtl;
    max-width: 860px;
    margin: 0 auto;
  }

  .sas1-card {
    position: relative;
    width: 100%;
    border: 1px solid var(--sas1-gray-border);
    border-radius: var(--sas1-radius);
    padding: 15px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    transition: var(--sas1-transition);
    width: 100%;
    box-sizing: border-box;
  }

  .sas1-card:hover {
    border-color: #999;
  }

  /* Hide native checkbox but keep it functional */
  .sas1-card__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* Selected State Wrapper */
  .sas1-card__ui {
    position: absolute;
    inset: -1px; /* Matches parent border */
    border: 2px solid transparent;
    border-radius: var(--sas1-radius);
    pointer-events: none;
    transition: var(--sas1-transition);
    z-index: 2;
  }

  /* Red border logic */
  .sas1-card__input:checked + .sas1-card__ui {
    border-color: var(--sas1-red);
  }

  /* Checkmark Icon logic */
  .sas1-card__ui::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px; /* Anchor to top-left for RTL */
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 1px solid var(--sas1-gray-border);
    border-radius: 50%;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--sas1-transition);
  }

  .sas1-card__input:checked + .sas1-card__ui::after {
    background-color: var(--sas1-red);
    border-color: var(--sas1-red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  }

  /* Content Styles */
  .sas1-card__image-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .sas1-card__image {
    max-width: 140px;
    height: auto;
    object-fit: contain;
  }

  .sas1-card__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--sas1-text);
    margin: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .smart-agent-process #group1-tab-div-1 {
    flex-flow: row;
    justify-content: flex-start;
    gap: 50px;
    padding: 50px;
  }

 .smart-agent-process .sa-step2-inner{
    display: flex;
    flex-flow: column;
 }

  @media (max-width: 1680px) {
      .smart-agent-process #group1-tab-div-1 {
          padding: 24px 0 28px 0;
          flex-flow: column;
          gap: 10px;
          padding: 20px;
      }
  }

  /* Responsive adjustments */
  @media (max-width: 480px) {
    .sas1-grid {
      /* Forces exactly 2 columns regardless of width */
      grid-template-columns: repeat(2, 1fr); 
      gap: 20px;
      padding: 20px;
    }
    
    .sas1-card {
      padding: 10px 5px; /* Tighter padding for small screens */
    }

    .sas1-card__title {
      font-size: 14px; /* Slightly smaller text for mobile */
    }
  }


  /* Engine specific grid override */
  .sas1-grid--engine {
      grid-template-columns: repeat(3, 1fr); /* 3 options as per image */
      max-width: 656px;
      margin: 0 auto;
      gap: 40px;
  }

  /* Engine specific card styling */
  .sas1-card--engine {
      min-height: 51px; /* Shorter height than car model cards */
      justify-content: center;
      padding: 0 20px;
      background: #fff;
  }

  .sas1-card--engine .sas1-card__title {
      font-size: 16px;
      font-weight: 500;
  }

  /* Adjustments for the checkmark bubble in this view */
  .sas1-card--engine .sas1-card__ui::after {
      top: -8px;
      right: -8px;
      width: 15px;
      height: 15px;
  }

  /* Mobile: Stack to single column or 2 columns */
  @media (max-width: 767px) {
      .sas1-grid--engine {
          grid-template-columns: 1fr;
          gap: 12px;
      }
      .smart-agent-process .sa-step2-inner {
          gap: 0;
      }
  }

  /* Step 3 Specific Grid - Higher density for locations */
  .sas1-grid--location {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 40px;
      direction: rtl;
      margin-top: 50px;
  }

  .sas1-card--location {
      min-height: 51px; /* More compact for list-like selections */
      padding: 10px;
      justify-content: center;
      text-align: center;
      background: #fff;
  }

  .sas1-card--location .sas1-card__title {
      font-size: 1.1rem;
      font-weight: 500;
  }

  /* Ensure the red selection UI matches exactly */
  .sas1-card--location .sas1-card__ui::after {
      top: -8px;
      left: -8px;
  }

  /* Adjustments for the checkmark bubble in this view */
  .sas1-card--location .sas1-card__ui::after {
      top: -8px;
      right: -8px;
      width: 15px;
      height: 15px;
  }

  .sas1-container.sa-step3-inner {
      width: 424px;
  }

  /* Mobile: 2 columns for locations is usually better than 1 to save vertical space */
  @media (max-width: 480px) {
      .sas1-grid--location {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
      }
  }

  :root {
      --faq-color-active: var(--bs-secondary, #FF0022);
      --faq-color-inactive: #202020;
      --faq-color-text: #333333;
      --faq-border-light: #eeeeee;
      --faq-transition: 0.2s ease-in-out;
  }

  .faq-nav-container {
      width: 100%;
  }
  .faq-content-container {
      width: 100%;
      margin-bottom: 50px;
  }
  .faq-tabs {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
      margin-bottom: 50px;
      border-bottom: 2px solid var(--faq-border-light);
      gap: 5px;
  }

  .faq-tabs__item {
      flex: 1;
      display: flex;
  }

  .faq-tabs__trigger {
      flex: 1;
      appearance: none;
      background: transparent;
      border: none;
      border-bottom: 4px solid var(--faq-color-inactive);
      color: var(--faq-color-text);
      cursor: pointer;
      font-size: 20px;
      font-weight: 500;
      padding: 12px 16px;
      text-align: center;
      transition: all var(--faq-transition);
      white-space: nowrap;
      /* Ensure the border sits on top of the container border */
      margin-bottom: -2px;
  }

  .faq-tabs__trigger:focus-visible {
      outline: 2px solid #005fcc;
      outline-offset: -4px;
  }

  /* Active State */
  .faq-tabs__trigger[aria-selected="true"] {
      border-bottom-color: var(--bs-secondary, var(--bs-secondary, #FF0022));
      font-weight: 700;
  }

  .faq-tabs__trigger:hover:not([aria-selected="true"]) {
      background-color: #f5f5f5;
  }

  /* Mobile adjustments */
  @media (max-width: 600px) {
      .faq-tabs__trigger {
          font-size: 14px;
          padding: 10px 4px;
      }
  }

  .footer-legal{
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
  }


  /* CTA Button Styling */
  .hiw-cta-button {
      display: inline-block;
      background:  var(--bs-secondary, #FF0022);
      color: #fff;
      padding: 10px 24px;
      border-radius: 50px;
      margin-top: 20px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .hiw-cta-button:hover {
      background: #000;
      color: #fff;
  }

  /* Ensure Arrows are visible if added to the container */
  .how-it-works-section .swiper-button-next,
  .how-it-works-section .swiper-button-prev {
      color:  var(--bs-secondary, #FF0022);
      display: none; /* Hide on mobile if using the custom pagination-wrap */
  }

  @media (min-width: 767px) {
      .how-it-works-section .swiper-button-next,
      .how-it-works-section .swiper-button-prev {
          display: flex;
      }
  }


  .how-it-works-section .container{
    position: relative;
  }


  .how-it-works-section .prev {
      right: 0;
      top: 0;
      position: absolute;
      top: 50%;
      z-index: 1;
  }

  .how-it-works-section .next {
      left: 0;
      top: 0;
      position: absolute;
      top: 50%;
      z-index: 1;
  }


  /* --- CTA Button Section --- */
  .how-it-works-cta {
      text-align: center;
      margin-top: 50px; /* Space from the slider */
  }

  .hiw-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 44px;
      background-color: #282830;
      color: #ffffff;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 15px rgba(255, 0, 34, 0.2);
  }

  .hiw-btn-primary:hover {
      background-color: var(--bs-secondary, #FF0022);
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  @media(max-width: 767px){
    .how-it-works-section .swiper-pagination-wrap {
        position: relative;
        top: 0;
    }
    .hiw-ruler-swiper .swiper-slide .hiw-ruler-title {
        font-size: 10px;
    }
  }

  .car-page-prices-box{
    display: flex;
    flex-flow: column;
    gap: 0 50px;
  }
  .car-item-prices-wrap{
    display: flex;
    gap: 50px;
  }
  .car-page-prices-box-disclaimer {
    display: flex;
    justify-content: flex-end;
  }

  .car-page-prices-box-disclaimer.justify-content-between {
    justify-content: space-between;
  }

  .car-page-prices-box-disclaimer .car-page-text-under-prices{
    font-weight: 700;
    font-size: 16px;
  }
  .car-page-prices-box-disclaimer .car-page-text-under-link{
    align-self: flex-end;
  }
  .car-page-prices-box-disclaimer .car-page-text-under-link a{
      font-size: 16px;
      line-height: 24px;
      color: #282830;
  }
  .tabs-group {
      position: relative;
  }
  #default_calculator {
      gap: 10px;
      height: auto;
      background: #202020;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      color: #FFFFFF;
      display: block;
      text-align: center;
      width: auto;
      display: inline-flex;
      align-items: center;
      padding: 12px 6px;
      text-decoration: none;
      position: absolute;
      top: -5px;
  }
  @media(max-width: 768px){
    #default_calculator {
        position: relative;
        margin-bottom: 15px;
    }
    .car-page-prices-box .car-item-prices {
        column-gap: 10px !important;
    }
    .car-page-prices-box .car-item-price b, .car-page-prices-box .car-item-price strong {
        font-size: 20px;
        font-weight: 700;
    }
    .car-page-prices-box-disclaimer {
        justify-content: center;
        flex-flow: column;
    }
    .car-page-text-under-link{
      margin: 0 auto;
    }
    .car-item-prices-wrap {
        flex-flow: column;
        gap: 10px;
        margin: 10px 0;
    }
  }

  .tabs-div-calc-cta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin: 0 auto;
      justify-content: center;
      margin: 20px auto;
  }

  .tabs-div-calc-cta .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 37px;
      max-width: 100%;
      width: 265px;
      min-height: 50px;
      background: var(--bs-secondary, #FF0022);
      /* border-radius: 100px; */
      font-weight: 700;
      font-size: 18px;
      line-height: 26px;
      color: #FFFFFF;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
  }

  .tabs-div-calc-cta .btn:hover {
      background: #D4001C;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 0, 34, 0.3);
      color: #FFFFFF !important;
  }

  @media (max-width: 768px) {
      .tabs-div-calc-cta {
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }

      .tabs-div-calc-cta .btn {
          max-width: 100%;
      }
  }



  .sitemap-section h2 {
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
      margin-top: 40px;
      color: #333;
      font-size: 1.5rem;
  }

  .sitemap-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
      padding: 20px 0;
      list-style: none !important;
  }

  .sitemap-list li {
      margin: 0;
      padding: 5px 0;
      border-bottom: 1px solid #f9f9f9;
  }

  .sitemap-list li a {
      text-decoration: none;
      color: #0073aa;
      transition: color 0.2s ease;
      font-size: 0.95rem;
  }

  .sitemap-list li a:hover {
      color: #d54e21;
      text-decoration: underline;
  }

  @media (max-width: 600px) {
      .sitemap-list {
          grid-template-columns: 1fr;
      }
  }


  .ac-container {
      position: relative;
  }

  .ac-input-wrapper {
      position: relative;
  }

  .ac-results-list {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      margin-top: 4px;
      padding: 0;
      list-style: none;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .ac-suggestion-item {
      padding: 12px 15px;
      cursor: pointer;
      text-align: right; /* RTL focus */
      color: #333;
      transition: background 0.2s;
  }

  /* Keyboard/Hover state */
  .ac-suggestion-item:hover,
  .ac-suggestion-item.ac-is-active {
      background-color: #f0f4f8;
      color: #007cba;
  }

  /* Hide when empty */
  .ac-results-list:empty {
      display: none;
  }

  .car-details-box-dark{
    background-color: #282830;
    color: #FFFFFF;
  }

  .agency-hours-title.agency-details-title {
      font-size: 24px;
      font-weight: 500;
  }

  .selected-filter[data-tooltip]:not([data-tooltip=""]):not(.noUiSlider):not(.noUiSlider-single) {
      flex-flow: row;
  }



  :root {
      --checkout-bg-color: #f7f9fc;
      --checkout-text-primary: #1a1a1b;
      --checkout-accent-red: var(--bs-secondary, var(--bs-secondary, #FF0022));
  }


  /* Container */
  .checkout-info-card {
      background-color: #F4F6FB;
      width: 100%;
      padding: 40px 30px;
      border-radius: 10px;
  }

  /* Header */
  .checkout-info-card__header {
      margin-bottom: 30px;
  }

  .checkout-info-card__title {
      font-size: 20px;
      font-weight: 600;
      color: #202020;
      margin: 0;
      text-align: right;
  }

  /* List Styling */
  .checkout-info-card__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 25px;
  }

  .checkout-info-card__item {
      position: relative;
      padding-inline-start: 12px;
      border-inline-start: 3px solid var(--checkout-accent-red);
      text-align: right;
      min-height: 30px;
  }

  .checkout-info-card__text {
      font-size: 14px;
      line-height: 1.3;
      color: #202020;
      margin: 0;
      /* Prevents awkward breaks on specific metadata-like short lines */
      white-space: normal;
  }

  .checkout-info-card__text--bold {
      font-weight: 600;
  }

  @media(min-width: 1024px){
    .checkout-info-card {
        max-width: 300px;
    }
  }

  /* Desktop Adjustments */
  @media (min-width: 1280px) {
      .checkout-info-card {
          max-width: 415px;
          padding: 50px 20px;
          height: auto;
          max-height: 566px;
      }
  }


  .save-car-details {
      margin: 0;
  }

  @media(max-width: 1024px){
    .save-car-wrap {
        flex-flow: column-reverse !important;
    }
  }

  @media (max-width: 767px) {
      .sc-personal-details-form-wrap.step1 .wpcf7-form-control-wrap {
          width: 100% !important;
      }

  }

  .cta-wrapper {
      display: flex;
      justify-content: center;
      margin: 60px 0;
  }

  .y-btn {
      display: inline-block;
      padding: 16px 60px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border-radius: 4px;
      cursor: pointer;
      text-align: center;
  }

  .y-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  @media (max-width: 768px) {
      .y-btn {
          width: 100%; 
          padding: 15px 20px;
      }
  }

  label.error, .wpcf7-not-valid-tip {
      background: #dc3232 !important;
      color: #fff !important;
      margin: 10px 0 !important;
      padding: 5px !important;
  }


/* The wrapper state by default */
#default_calculator_wrapper {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* The hidden state triggered by JS */
#default_calculator_wrapper.is-hidden {
    opacity: 0;
    visibility: hidden;
    /* This ensures that even if it's "there", it doesn't block clicks to things behind it */
    pointer-events: none; 
}

#billing_marketing_disclaimer_field .optional {
    display: none !important;
}

.accordion-trigger {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: right; /* RTL */
    display: flex;
    flex-direction: row; /* RTL: icon on left, text on right */
    align-items: center;
    padding: 0;
    gap: 8px;
}

.accordion-icon {
    background: url('../../images/arrow-bottom-dark.svg') center center no-repeat;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    margin: 0 0 0 auto; /* RTL: push icon to the left */
    position: relative;
    transition: all 0.2s ease;
}

/* Rotate arrow when open */
.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
}

.accordion-content.is-open {
    display: block;
}



.sa-bar {
  width: 100%;
  background: #202020;
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  padding: 0 68px;
  min-height: 107px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sa-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #ADADB0;
  margin-bottom: 12px;
}
.sa-bar-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.sa-bar-clear {
  font-size: 13px;
  font-weight: 300;
  color: #ADADB0;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: 'Heebo', sans-serif;
}
.sa-bar-clear:hover { color: #fff; }
.sa-bar-body {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 33px;
}
.sa-empty-msg {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 1.3;
}
.sa-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sa-separator {
  width: 1px;
  height: 24px;
  background: var(--bs-secondary, #FF0022);
  flex-shrink: 0;
  margin-inline: 10px;
}
.sa-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F8F8F8;
  border-radius: 100px;
  padding: 4px 10px 4px 6px;
  font-size: 13px;
  color: #282830;
  white-space: nowrap;
}
.sa-tag-remove {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #8B8C90;
  background: none;
  border: none;
  padding: 0;
  background: #8B8C90;
  color: #ffffff;
  border-radius: 50%;
  padding: 4px;
}
.sa-tag-remove:hover { color: #202020; }
.sa-tag-remove svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

@media(max-width: 768px){
  .sa-bar {
      padding: 20px;
  }
  .sa-bar-body {
      gap: 12px;
  }
  .sa-group {
      gap: 12px;
  }
  .sa-separator {
      width: 100%;
      height: 1px;
      margin: 0;
      opacity: .7;
  }
}


.order-by-wrap .select2-container--default .select2-selection--single, .orderby-select2.select2-selection--single {
    border: 1px var(--color-Main, #282830) solid !important;
}