/* ========== Gallery Styling ========== */
.gallary-property-details {

    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 74px;
    /* margin-top: -140px; */

}

.widget-breakcrumb {
    margin-top: 153px;
}

.property-gallary2 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.property-gallary2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.property-gallary2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.property-gallary2 .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.property-gallary2 .swiper-button-next,
.property-gallary2 .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-gallary2 .swiper-button-next:hover,
.property-gallary2 .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.property-gallary2 .swiper-button-next::after,
.property-gallary2 .swiper-button-prev::after {
    font-size: 18px;
}

/* Image Counter */
.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* Thumbnails Container */
.property-gallary {
    margin-top: 12px;
    padding: 8px;
    background: #fafafa;
    border-radius: 8px;
}

.property-gallary .swiper-wrapper {
    display: flex;
    gap: 10px;
}

.property-gallary .swiper-slide {
    width: 80px !important;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.property-gallary .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-gallary .swiper-slide:hover {
    border-color: #e0e0e0;
    transform: scale(1.05);
}

.property-gallary .swiper-slide:hover img {
    filter: brightness(1.1);
}

/* Active Thumbnail */
.property-gallary .swiper-slide.swiper-slide-thumb-active {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Responsive Thumbnails */
@media (max-width: 768px) {
    .property-gallary2 {
        aspect-ratio: 16 / 12;
    }

    .property-gallary .swiper-slide {
        width: 70px !important;
        height: 70px;
    }

    .property-gallary2 .swiper-button-next,
    .property-gallary2 .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .gallery-counter {
        font-size: 12px;
        padding: 6px 10px;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .property-gallary2 {
        aspect-ratio: 16 / 14;
    }

    .property-gallary .swiper-slide {
        width: 60px !important;
        height: 60px;
    }

    .property-gallary2 .swiper-button-next,
    .property-gallary2 .swiper-button-prev {
        width: 36px;
        height: 36px;
        display: none;
    }
}

/* Smooth Transitions */
.swiper-slide-transition {
    transition: opacity 0.4s ease;
}

/* Loading State */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}



/* Search Button Styling */
.btn-search-car {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 8px 12px;
    color: #0056b3;
    transition: all 0.3s ease;
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-search-car:hover {
    color: #ff9800;
    transform: scale(1.1);
}

.search-badge {
    font-size: 10px;
    background: #ff9800;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: bold;
}

/* Offcanvas Styling */
.car-filter-offcanvas {
    height: auto;
    max-height: 85vh;
    box-shadow: 0 -4px 20px rgba(0, 86, 179, 0.15);
    border-top: 4px solid #0056b3;
}

.car-filter-header {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    color: white;
    padding: 25px;
    border-bottom: 2px solid #ff9800;
}

.car-filter-header h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.filter-subtitle {
    margin: 8px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
    margin-left: 30px;
}

.car-filter-body {
    padding: 30px 25px;
    background: #f8f9fa;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filter Group Styling */
.filter-group {
    margin-bottom: 22px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.filter-label i {
    color: #0056b3;
    font-size: 16px;
}

.required-badge {
    color: #dc3545;
    font-weight: bold;
}

/* Form Controls */
.filter-select,
.filter-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
}

.filter-select:focus,
.filter-input:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

.filter-select:hover {
    border-color: #0056b3;
}

/* Range Slider */
.filter-range {
    height: 8px;
    cursor: pointer;
    background: linear-gradient(to right, #0056b3 0%, #ff9800 100%);
    border-radius: 5px;
}

.filter-range::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #0056b3;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.filter-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #0056b3;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Price Slider Container */
.price-slider-container {
    position: relative;
    margin-top: 10px;
}

.price-slider {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #e0e0e0;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 0;
}

.price-slider:nth-child(2) {
    background: transparent;
    pointer-events: none;
    z-index: 5;
}

.price-display {
    color: #ff9800;
    font-weight: 700;
    margin-left: 10px;
}

/* Action Buttons */
.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #ddd;
}

.btn-search-submit {
    flex: 1;
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search-submit:hover {
    background: linear-gradient(135deg, #004494 0%, #003375 100%);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    transform: translateY(-2px);
}

.btn-search-reset {
    flex: 1;
    background: white;
    color: #0056b3;
    border: 2px solid #0056b3;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search-reset:hover {
    background: #0056b3;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .car-filter-header h5 {
        font-size: 20px;
    }

    .car-filter-body {
        padding: 20px 15px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .btn-search-submit,
    .btn-search-reset {
        width: 100%;
    }
}

.search-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 70px;
}

/* Location Section */
.location-section {
    flex: 0 0 auto;
    width: 280px;
    border-right: 1px solid #e0e0e0;
    position: relative;
    padding: 0;
}

@media (max-width: 768px) {
    .location-section {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

.location-btn {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.location-btn:hover {
    background-color: #f5f5f5;
}

.location-btn:focus {
    outline: none;
    background-color: #f5f5f5;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: #0066CC;
    flex-shrink: 0;
}

.location-content {
    text-align: left;
    flex: 1;
}

.location-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.location-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.chevron {
    width: 18px;
    height: 18px;
    color: #bbb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.location-btn.active .chevron {
    transform: rotate(180deg);
}

/* Location Dropdown */
.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-dropdown.active {
    display: block;
}

.location-option {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.location-option:hover {
    background-color: #f0f8ff;
    color: #0066CC;
}

.location-option.selected {
    background-color: #f0f8ff;
    color: #0066CC;
    font-weight: 600;
}

.location-option:last-child {
    border-bottom: none;
}

/* Search Input Section */
.search-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    min-width: 250px;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #bbb;
    flex-shrink: 0;
}

.search-section input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
    padding: 5px 0;
}

.search-section input::placeholder {
    color: #aaa;
}

.clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 18px;
    padding: 0 5px;
    transition: color 0.2s ease;
}

.clear-btn:hover {
    color: #666;
}

/* Search Button */
.search-btn {
    padding: 0 35px;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0;
}

.search-btn:hover {
    background: linear-gradient(135deg, #0052A3 0%, #004080 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.search-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .search-btn {
        width: 100%;
        padding: 15px;
    }

    .search-wrapper {
        flex-direction: column;
    }
}

/* Quick Suggestions */
.suggestions-section {
    margin-top: 30px;
}

.suggestions-title {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #b7a6a6;
}

.suggestion-tag {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    border-color: #0066CC;
    color: #0066CC;
    background-color: #f0f8ff;
}

/* Features Grid */
.features-section {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-icon-box.blue {
    background-color: #e6f0ff;
    color: #0066CC;
}

.feature-icon-box.orange {
    background-color: #fff4e6;
    color: #FF9800;
}

.feature-icon-box.green {
    background-color: #e6f5e6;
    color: #4CAF50;
}

.feature-card h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* Scrollbar Styling */
.location-dropdown::-webkit-scrollbar {
    width: 6px;
}

.location-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.location-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.location-dropdown::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.tf-car-service .image .stm-badge-top .feature .cut {
    display: none;
}




.head-main-header {
    background: #f7f8f9;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Roboto', Arial, sans-serif;
}

.head-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.head-brand img {
    height: 55px;
    width: auto;
}

.head-search-area {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.head-loc-box {
    width: 280px;
    height: 48px;
    background: #fff;
    border: 1px solid #002f34;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.head-loc-box:focus-within {
    box-shadow: 0 0 0 2px rgba(0, 164, 159, 0.2);
}

.head-search-input-box {
    flex: 1;
    height: 48px;
    background: #fff;
    border: 1px solid #002f34;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.head-search-input-box input {
    flex: 1;
    /* height: 100%; */
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
    color: #002f34;
}

.head-search-circle-btn {
    width: 54px;
    height: 40px;
    background: #3a77ff;
    color: #fff;
    border: none;
    border-radius: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.head-search-circle-btn:hover {
    background: #002f34;
}

.head-user-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.head-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: #002f34 !important;
    font-weight: 700;
    font-size: 12px;
    transition: color 0.2s;
}

.head-nav-item i {
    font-size: 24px;
    margin-bottom: 2px;
    font-weight: 400;
}

.head-nav-item:hover {
    color: #00a49f !important;
}

.head-sell-premium {
    padding: 3px;
    background: linear-gradient(135deg, #ffce32 0%, #3a77ff 50%, #23e5db 100%);
    border-radius: 25px;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.head-sell-premium:hover {
    transform: translateY(-2px);
}

.head-sell-inner {
    background: #fff;
    padding: 7px 18px;
    border-radius: 22px;
    color: #002f34;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Category System */
.head-cat-strip {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.head-cat-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    padding-left: 155px;
    justify-content: space-between;
}

.head-cat-left {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
}

.head-cat-left::-webkit-scrollbar {
    display: none;
}

.all-cat-btn-pill {
    background: #3a77ff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.cat-link-pill {
    text-decoration: none !important;
    color: #002f34 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border: 1px solid;
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}

.cat-link-pill:hover {
    background: #f1f3f5;
    border-color: #002f34;
}

.head-cat-date {
    font-size: 14px;
    color: #002f34;
    font-weight: 500;
    opacity: 0.8;
    padding-left: 20px;
}

@media (max-width: 1024px) {
    .head-loc-box {
        width: 180px;
    }

    .head-cat-date {
        display: none;
    }
}

/* Mega Menu Styles */
.mega-menu-wrapper {
    position: relative;
    top: 100%;
    left: 5%;
    width: 90%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 30px 0;
    border-top: 1px solid #f1f3f5;
}

.mega-menu-wrapper.active {
    display: block;
}

.mega-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #002f34;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-decoration: none !important;
}

.mega-col-title i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.mega-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links-list li {
    margin-bottom: 8px;
}

.mega-links-list a {
    color: #002f34;
    font-size: 14px;
    text-decoration: none !important;
    transition: color 0.1s;
}

.mega-links-list a:hover {
    color: #3a77ff;
}

.mega-cat-group {
    margin-bottom: 30px;
}

.head-cat-strip {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .widget-icon-box {
        padding-top: 140px;
        padding-bottom: 90px;
    }

}

/* Seller Section */
.seller-section {
    margin-bottom: 25px;
}

.seller-section-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.seller-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.seller-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.seller-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.seller-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999;
}

.seller-verified i {
    color: #1458fa;
}

.seller-rating {
    text-align: right;
}

.rating-stars {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.rating-stars i {
    color: #ffc107;
    font-size: 12px;
}

.rating-count {
    font-size: 12px;
    color: #999;
}

.seller-details {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.seller-details p {
    margin: 0;
}

/* Contact Buttons Row */
.contact-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: white;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    border-color: #d0d0d0;
    background: #f9f9f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-btn:active {
    transform: scale(0.98);
}

.contact-btn i {
    font-size: 24px;
}

.contact-btn.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.contact-btn.whatsapp i {
    color: #25D366;
}

.contact-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: #20c55e;
}

.contact-btn.call {
    border-color: #1458fa;
    color: #1458fa;
}

.contact-btn.call i {
    color: #1458fa;
}

.contact-btn.call:hover {
    background: rgba(20, 88, 250, 0.05);
    border-color: #0d47a1;
}

.contact-btn.details {
    background: linear-gradient(135deg, #1458fa 0%, #0d47a1 100%);
    color: white;
    border: none;
    font-weight: 700;
}

.contact-btn.details i {
    color: white;
}

.contact-btn.details:hover {
    box-shadow: 0 4px 12px rgba(20, 88, 250, 0.3);
    transform: translateY(-2px);
}

/* Details Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.seller-full-info {
    margin-bottom: 25px;
}

.seller-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.seller-full-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.seller-full-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.seller-full-badge i {
    color: #1458fa;
}

.rating-box {
    background: #f0f6ff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.rating-big {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rating-big i {
    color: #ffc107;
}

.rating-reviews {
    font-size: 12px;
    color: #666;
}

.info-description {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #1458fa;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.info-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-value i {
    color: #1458fa;
    font-size: 12px;
}

@media only screen and (max-width: 576px) {
    
      .widget-breakcrumb {
    margin-top: 71px !important;
}
    .widget-tf-slider {
        position: relative;
        width: 100%;
        height: 245px !important;
        background-color: #000;
        overflow: hidden;
    }

    .widget-tf-slider .slider-wrap .tf-slide-item .slide-item-image img {
        position: absolute;
        width: 100%;
        height: 40%;
        top: 0;
        left: 0;
        object-fit: cover;
    }

    .slider-dots span {
        display: inline-block;
        width: 5px;
        height: 4px;
        margin: 0 5px;
        background: rgb(8 7 7 / 50%);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-dots {
        position: absolute;
        bottom: 81px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        z-index: 10;
    }

    .suggestion-title {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 10px;
    }

    .about-card img {
             width: 100%;
        height: 162px !important;
        object-fit: unset !important;
    }

    .listing-list-car-wrap .toolbar-search-list {
        text-align: center;
        margin-top: 10px !important;
    }
    .search-filter-listing-car {
        position: static;
        margin-bottom: 320px !important;
    }

    .search-filter-listing-car .list-filter {
        position: absolute;
        background-color: #ffffff;
        left: 0px;
        right: 0px;
        top: -77px  !important;
        z-index: 7;
        padding: 15px !important;
        /* box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.07); */
        border-radius: 10px;
        display: block !important;
        height: 489px !important;
        overflow-y: auto !important;
    }
    .listing-list-car-wrap{
        margin-top: 10px !important;
    }

    .head-main-header {
        padding: 20px 12px !important;
    }
    select, textarea, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color] {
    font-family: "Plus Jakarta Sans", sans-serif;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000000;
    /* border: 1px solid #EBEBEB; */
    border-radius: 5px;
    padding: 15px 43px !important;
}

#header2 .close-btn {
    top: 16px;
    right: 16px;
    color: #ffffff !important;
}
#header2 .mobile-nav-toggler {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 47, 52, 0.12);
    border-radius: 12px;
    background: unset !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    padding: 0;
}

}


@media only screen and (max-width:576px){
    .board-filter {
    flex: 1;
    /* border: none; */
    background: transparent;
    padding: 7px 8px;
    border-radius: 20px;
    font-weight: 500;
    color: #000000;
    transition: all 0.3s ease;
    font-size: 13px;
    /* border: #002f34 solid 1px; */
}
}