.select2-selection-tailwind {
    background-color: transparent !important;
    border: 1px solid #e2e8f0 !important; /* border-slate-200 */
    border-radius: 0.5rem !important; /* rounded-lg */
    padding: 0.5rem !important;
    min-height: 42px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important; /* shadow-sm */
    color: #0f172a !important; /* text-black */
  margin-top: -3%;
}

.select2-dropdown-tailwind {
    background-color: white !important;
    border: 1px solid #e2e8f0 !important; /* border-slate-200 */
    border-radius: 0.5rem !important; /* rounded-lg */
}


.swal2-confirm.swal2-styled {
    background: #011e40 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

.swal2-confirm.swal2-styled:hover {
    background: #022c5a !important;
}

.swal2-cancel.swal2-styled {
    background: #ee5721 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

.swal2-cancel.swal2-styled:hover {
    background: #ee5724 !important;
}

.ts-wrapper,
.ts-control {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
}

.ts-wrapper {
    background-color: #f1f5fa !important;
    color: #1f2937; /* gray-800 */
    border-radius: 0.375rem !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    border: none !important;
    box-shadow: none !important;
}

.ts-control {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.ts-dropdown {
    background-color: white;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    overflow: hidden;
}

.ts-dropdown .option {
    padding: 8px 12px;
    cursor: pointer;
}

.ts-dropdown .option:hover {
    background-color: #f3f4f6; /* hover bg */
}

.ts-dropdown .active {
    background-color: #e0f2fe; /* blue-100 */
    color: #0369a1; /* blue-700 */
}

.insta-banner {
    width: 100%;
    max-width: 900px; /* t9der tzid tna9s */
    margin: 0 auto;
}

.insta-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* optional */
}




@media (min-width: 768px) {
  .mobile { display: none !important; }
}
@media (max-width: 767px) {
  .desktop { display: none !important; }
  
  
}

@media (min-width: 768px) {
  .share-fixed {
    position: absolute;
    margin-left: 17%;
    margin-top: -3%;
    background: #ffffff;
    color: #011e40;
    border: 1px solid #ebedf0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

}


  
  :root{
  --navy:#011e40;
  --orange:#ee5721;
}

.veh-tabs{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid rgba(1,30,64,.10);
  box-shadow: 0 12px 30px rgba(1,30,64,.10);
  max-width: 980px;
  margin: 22px auto;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
}

.veh-tabs::-webkit-scrollbar{ height: 0; }

.veh-tab{
  appearance:none;
  border:0;
  cursor:pointer;
  white-space:nowrap;

  padding: 12px 20px;
  border-radius: 999px;

  background: rgba(1,30,64,.06);
  color: var(--navy);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;

  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
}

.veh-tab:hover{
  background: rgba(1,30,64,.10);
  transform: translateY(-1px);
}

.veh-tab.active{
  background: var(--navy);
  color:#fff;
  box-shadow: 0 10px 22px rgba(1,30,64,.22);
  position:relative;
}

.veh-tab.active::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom: -7px;
  height:3px;
  border-radius:999px;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(238,87,33,.35);
}


.car-brand-model {
    font-size: 11px;
    color: #fff;
    background: var(--orange);
    padding: 6px 10px;
    border-radius: 999px;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.car-brand-model .dot {
    color:#fff;
    font-weight: normal;
}

.city-accent{
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: #011e40;
}

.city-accent::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 60%;
    height: 2px;
    background: #ee5721; /* your accent color */
    border-radius: 2px;
}

/* ===== Car title (no icon) ===== */
.car-title-link{
    display: block;
    color: #011e40;
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.25;
    letter-spacing: 0.1px;
    text-decoration: none;
    transition: color .15s ease;
}

.car-title-link:hover{
    color: #ee5721; /* your accent */
}

/* Mobile tweak */
@media (max-width: 768px){
    .car-title-link{
        font-size: 15px;
    }
}

.car-title-link:hover{
    text-decoration: underline;
}
.car-title-link{
    text-transform: capitalize;
}



.like-float{
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 30;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 8px;
  border-radius: 999px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.like-float:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  background: rgba(255,255,255,.9);
}

.like-float:active{
  transform: translateY(0px) scale(.98);
}

.like-float__icon{
  font-size: 18px;
  color: #e11d48; /* red */
}

.like-float__count{
  font-weight: 700;
  font-size: 13px;
  color: #011e40; /* your navy */
  line-height: 1;
}

.ptb_desc {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
}
@media (max-width: 640px){
  .like-float{
    top: 10px;
    right: 10px;
    padding: 7px 9px;
    gap: 6px;
  }
}

.services-banner{
    background:#f3f7ff;
    border:1px solid #dce6ff;
    border-radius:12px;
    padding:15px 20px;
    margin-bottom:20px;
}

.banner-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.banner-text strong{
    display:block;
    font-size:16px;
    color:#0d3b66;
}

.banner-text p{
    margin:3px 0 0;
    font-size:13px;
    color:#555;
}

.btn-add-service{
    background:#ee5721;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    font-size: 14px;
}
