.theme-toggle-btn {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f39c12; 
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

body.light-mode {
    background: #ffffff;
    color: #333333;
}
body.light-mode .contact h5{
    color: #111111 !important;
}
body.light-mode .contact .form-box{
    background: #f9f9f9 !important;
}
body.lets-talk[data-overlay-dark] h5, .lets-talk h5{
    color: #fff !important;
}
body.light-mode .special-content h2{
    color: #111111 !important;
}
.special-content h2{
    color: #fff !important;
    font-size:21px;
}

body.light-mode h1, 
body.light-mode h2, 
body.light-mode h3, 

body.light-mode .section-title {
    color: #111111 !important;
}
body.light-mode .btn-back-to-list{
    color: #000 !important;
}

body.light-mode .car-card  {
    background: #f9f9f9 !important;
    border: 1px solid #eeeeee;
}

body.light-mode .text-multo{
    color: #f5b754!important;
}

body.light-mode .header .caption h1 {
    color: #f5b754 !important;
}

body.light-mode .header .caption h5 {
    color: #fff !important;
}
body.light-mode .footer .widget .widget-title {
    color: #f5b754 !important;
}
.mr-15 {
    margin-right: 15px !important;
}

.footer-contact-links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-contact-link-wrapper {
    flex: 1 1 0; 
    min-width: 0;
    display: flex;
    align-items: flex-start; 
    padding: 0 10px; 
}

.footer-contact-link-content a p {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-contact-link-content p {
    white-space: normal; 
    line-height: 1.6; 
    margin-bottom: 0;
    word-wrap: break-word; 
}

@media (max-width: 991px) {
    .footer-contact-links-wrapper {
        flex-direction: column;
    }
    .footer-contact-links-divider {
        display: none; 
    }
    .footer-contact-link-wrapper {
        flex: 1 1 100%;
        margin-bottom: 25px;
        padding: 0;
    }
}

.multo-whatsapp-support {
    --multo-wp-bottom: 160px;
    --multo-wp-right: 30px;
    --multo-wp-green: #25d366;
    --multo-wp-dark: #1f2933;
    --multo-wp-soft: #f7f7f7;
    --multo-wp-border: #eeeeee;
    --multo-wp-pink: #f6abb4;

    position: fixed;
    right: var(--multo-wp-right);
    bottom: var(--multo-wp-bottom);
    z-index: 9998;
    font-family: inherit;
}

.multo-whatsapp-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.multo-whatsapp-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.multo-whatsapp-toggle-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--multo-wp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.multo-whatsapp-favicon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.multo-whatsapp-avatar-fallback {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--multo-wp-green);
}

.multo-whatsapp-avatar-fallback svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.multo-whatsapp-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.22);
    animation: multoWpPulse 1.8s infinite;
}

@keyframes multoWpPulse {
    0% {
        transform: scale(0.88);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.multo-whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.35);
}

.multo-whatsapp-box {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 350px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.98);
    transition: all 0.25s ease;
}

.multo-whatsapp-support.is-open .multo-whatsapp-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.multo-whatsapp-header {
    background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.multo-whatsapp-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

.multo-whatsapp-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 46px;
}

.multo-whatsapp-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.multo-whatsapp-status {
    font-size: 11px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    gap: 6px;
}

.multo-whatsapp-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--multo-wp-green);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
    flex: 0 0 8px;
}

.multo-whatsapp-close {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 22px;
    line-height: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.multo-whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.multo-whatsapp-body {
    padding: 16px;
    background:
        radial-gradient(circle at top left, rgba(246, 171, 180, 0.16), transparent 32%),
        #ffffff;
}

.multo-whatsapp-message {
    display: inline-block;
    max-width: 92%;
    background: #f5f5f5;
    border: 1px solid var(--multo-wp-border);
    color: #333333;
    font-size: 13px;
    line-height: 1.55;
    padding: 12px 14px;
    border-radius: 0 14px 14px 14px;
    margin-bottom: 14px;
}

.multo-whatsapp-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 13px;
}

.multo-whatsapp-quick button {
    border: 1px solid #e8e8e8;
    background: #ffffff;
    color: #444444;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.multo-whatsapp-quick button:hover {
    border-color: var(--multo-wp-pink);
    background: #fff5f6;
    color: #c76c78;
}

.multo-whatsapp-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 7px;
}

.multo-whatsapp-textarea {
    width: 100%;
    min-height: 92px;
    resize: none;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
    padding: 12px;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.multo-whatsapp-textarea:focus {
    border-color: var(--multo-wp-green);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.multo-whatsapp-send {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: var(--multo-wp-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-top: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.multo-whatsapp-send:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.multo-whatsapp-send svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}


@media (max-width: 575px) {
    .multo-whatsapp-support {
        --multo-wp-bottom: 158px;
        --multo-wp-right: 30px;
    }

    .multo-whatsapp-toggle {
        width: 50px;
        height: 50px;
    }

    .multo-whatsapp-toggle-icon {
        width: 44px;
        height: 44px;
    }

    .multo-whatsapp-favicon {
        width: 30px;
        height: 30px;
    }

    .multo-whatsapp-box {
        width: calc(100vw - 28px);
        max-width: 350px;
        bottom: 72px;
    }

    .multo-whatsapp-body {
        padding: 14px;
    }
}

@media (max-width: 767px) {
    .header.slider-fade,
    .header.slider-fade .owl-carousel,
    .header.slider-fade .owl-carousel .item {
        height: 65vh !important;
        min-height: 480px !important;
    }
    
    .header.slider-fade .item.bg-img {
        background-position: center bottom !important; 
    }

    .header.slider-fade .caption h1 {
        font-size: 36px !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }
    
    .header.slider-fade .caption h5 {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    .header.slider-fade .caption .button-1,
    .header.slider-fade .caption .button-2 {
        padding: 10px 18px !important;
        font-size: 13px !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
    .v-middle{
        top: 60%!important;
    }
}
@media (max-width: 991px) {
    .navbar .logo-wrapper .logo-img {
        max-width: 250px !important; 
    }
    
    .mobile-language {
        display: flex;
        align-items: center;
    }
}
.cars1 .item .con .row {
    align-items: center;
}

.cars1 .item .con .book {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cars1 .item .con .book .price {
    white-space: nowrap !important;
    font-size: 22px; 
    line-height: 1;
}

@media (max-width: 991px) {
    .cars1 .item .con .book {
        align-items: flex-start; 
        margin-top: 20px;
    }
}
.banner-header2{
        height: 70vh;
    background-position: center;
}
.banner-header2.bg-img {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important; /* Kutuyu parçalayıp tam ekrana yayan sihirli kod */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Siyah şeffaf overlay katmanının da ekrana yayılmasını garantileyelim */
.banner-header2[data-overlay-dark]:before {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.car-details .gallery-items .gallery-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.car-details .gallery-items .gallery-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center; 
    transition: transform 0.4s ease;
}

.car-details .gallery-items .gallery-img:hover img {
    transform: scale(1.05);
}
.btn-back-to-list {
    color: #e4c590;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-back-to-list:hover {
    color: #fff;
    transform: translateX(-5px); 
}

@media (min-width: 992px) {
    .sidebar-car {
        position: -webkit-sticky;
        position: sticky;
        top: 100px; 
        z-index: 10;
        transition: top 0.3s ease;
    }
}

@media (max-width: 767px) {
    .section-title{
        font-size:25px !important;
    }
    .text-multo{
        font-size: 30px !important;
    }
    .banner-header2 {
        height: 50vh;
    }
    .cars1 .item .con .book {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important;
        align-items: center !important; 
        margin-top: 15px;
        width: 100%;
    }
    
    .cars1 .item .con .book > div {
        margin: 0 !important;
        padding: 0 !important;
    }

    .cars1 .item .con .book .price {
        font-size: 20px !important;
        margin-bottom: 0 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 767px) {
    .car-details .gallery-items {
        display: block !important;
        height: auto !important; 
    }
    
    .car-details .gallery-items .single-item {
        position: relative !important;
        left: 0 !important;
        top: auto !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .car-details .gallery-items .gallery-masonry-wrapper {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .car-details .gallery-items .gallery-img img {
        height: 250px !important; 
        border-radius: 8px !important;
    }
}
/* yeni premium */
.custom-boutique-grid .custom-car-item {
    position: relative;
    overflow: hidden;
    background: #1b1b1b !important;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 !important;
}

.custom-boutique-grid .custom-car-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: #e4c590;
}

.custom-boutique-grid .custom-car-item .img {
    overflow: hidden;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.custom-boutique-grid .custom-car-item .img img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.custom-boutique-grid .custom-car-item:hover .img img {
    transform: scale(1.05);
}

.custom-boutique-grid .custom-car-item .con {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    transform: none !important;
    padding: 20px 25px 25px 25px !important;
    background: transparent !important;
    border: none !important;
}

/* --- BAŞLIK TEMA İNADINI KIRAN KISIM --- */
.cars1 .custom-boutique-grid .custom-car-item .title,
.custom-boutique-grid .custom-car-item .title {
    position: static !important; /* Temanın absolute kancasını kesin iptal eder */
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    transform: none !important;
}

.custom-boutique-grid .custom-car-item .title a {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    display: block !important;
    position: static !important;
}

.custom-boutique-grid .custom-car-item .details {
    margin-top: 5px;
}

.custom-boutique-grid .custom-car-item .details span {
    color: #cccccc !important;
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    margin-bottom: 5px;
}

/* --- FİYAT (SOL) VE BUTONLAR (SAĞ) HİZALAMASI --- */
.custom-boutique-grid .custom-book-layout {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

.custom-boutique-grid .price-wrapper {
    display: flex;
    align-items: center;
}

.custom-boutique-grid .btn-wrapper {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.custom-boutique-grid .custom-book-layout .price {
    font-size: 24px !important;
    font-weight: 700;
    color: #e4c590 !important;
    white-space: nowrap;
    margin: 0 !important;
    line-height: 1 !important;
}

.custom-boutique-grid .custom-book-layout .btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.custom-boutique-grid .custom-sahibinden-btn {
    background: #ffe100 !important;
    border-color: #ffe100 !important;
}

.custom-boutique-grid .custom-sahibinden-btn span {
    color: #000000 !important;
    font-weight: 600 !important;
}

/* --- LIGHT MODE ÖZEL DÜZENLEMELERİ --- */
body.light-mode .custom-boutique-grid .custom-car-item {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .custom-boutique-grid .custom-car-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #f5b754 !important;
}

body.light-mode .custom-boutique-grid .custom-car-item .title a {
    color: #111111 !important; 
}

body.light-mode .custom-boutique-grid .custom-car-item .details span {
    color: #555555 !important;
}

body.light-mode .custom-boutique-grid .custom-book-layout {
    border-top: 1px solid #e5e5e5 !important;
}

body.light-mode .custom-boutique-grid .custom-book-layout .price {
    color: #f5b754 !important;
}

/* --- MOBİL UYUM --- */
@media (max-width: 767px) {
    .custom-boutique-grid .custom-book-layout {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .custom-boutique-grid .price-wrapper,
    .custom-boutique-grid .btn-wrapper {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .custom-boutique-grid .custom-car-item .img img {
        aspect-ratio: 16 / 9;
    }
}