/* ========================================================
   1. TARİH VE YOLCU SEÇİMİ
======================================================== */
.vip-input-group input[type="datetime-local"],
.vip-input-group select {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: block !important;
    width: 100% !important;
    height: 55px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 0 15px !important;
    margin: 0 !important;
    font-size: 15px !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

/* ========================================================
   2. YENİ ANA KUTUMUZ (Cam Efekti ve Sınırlar Burada)
======================================================== */
.vip-glass-box {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 55px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    transition: all 0.3s ease !important;
}

/* Kutuya tıklanınca dış sınır belirginleşsin */
.vip-glass-box:focus-within {
    border-color: rgba(255, 255, 255, 0.4) !important; /* Dış çerçeveyi biraz daha belirgin yaptık */
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* ========================================================
   3. GOOGLE BİLEŞENİ (Kutunun İçinde Tamamen Çıplak ve Şeffaf)
======================================================== */
.vip-glass-picker {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.vip-glass-picker::part(input) {
    width: 100% !important;
    height: 55px !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    padding: 0 15px !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Google'ın kendi varsayılan focus ring'ini (mavi çizgisini) yok et */
.vip-glass-picker::part(input):focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ========================================================
   4. İKON AYARLARI (Arama ve Temizleme Butonları)
======================================================== */
/* Arama büyüteç ikonunu gizle */
.vip-glass-picker::part(search-icon) {
    display: none !important;
    width: 0 !important;
}

/* YENİ: Temizleme (X) Butonu Ayarı (Shadow DOM Uyumlu) */
.vip-glass-picker::part(clear-button) {
    opacity: 0.6 !important; /* Butonu cama uyumlu, hafif mat yapar */
    transition: opacity 0.3s ease !important;
}
.vip-glass-picker::part(clear-button):hover {
    opacity: 1 !important; /* Üzerine gelince tam belirginleşir */
}

/* ========================================================
   5. SELECT OKU VE TAKVİM İKONU (Özel Tasarım)
======================================================== */
.vip-input-group select.vip-native-select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px top 50% !important;
    background-size: 12px auto !important;
}

.vip-input-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.8;
}

/* ========================================================
   6. BOOTSTRAP TABS (VIP CAM TASARIM OVERRIDE)
======================================================== */
/* ==== VIP TAB SİSTEMİ (sekmeler kutunun dışına çıkan çıkıntılar) ==== */
/* ==== VIP TAB SİSTEMİ ==== */
.vip-tabs {
    display: flex;
    gap: 4px;
    margin: 0 0 -1px 4px;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    border: none;
    position: relative;
    z-index: 2;
}
.vip-tabs li { margin: 0; }
.vip-tabs .vip-tab-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px 8px 0 0;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.vip-tabs .vip-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}
.vip-tabs .vip-tab-btn.active {
    background: #E11617;
    color: #ffffff;
    border-color: #E11617;
}
.vip-tab-content {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 12px 12px 12px;
    padding: 28px;
    position: relative;
    z-index: 1;
}
.vip-tab-panel { display: none; }
.vip-tab-panel.active { display: block; }

/* ==== VIP TOAST BİLDİRİM EFEKTİ ==== */
.vip-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.vip-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.vip-toast-icon i { font-size: 28px; }
.vip-toast-content h4 { margin: 0; font-size: 18px; color: #fff; font-weight: 600; }
.vip-toast-content p { margin: 5px 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.7); }
/*--------------*/
/* ==== Özet Çubuğu Tasarımı (Açık Renk Temaya Uygun) ==== */
.vip-search-summary {
    background: #ffffff; /* Temiz beyaz arka plan */
    border: 1px solid #eaeaea; /* Zarif bir kenarlık */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Derinlik katan hafif gölge */
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    color: #333333; /* Ana metin rengi koyu gri/siyah */
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.summary-icon {
    width: 36px;
    height: 36px;
    background: rgba(225, 22, 23, 0.1);
    color: #E11617; /* Sitenin kırmızı tonu */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.summary-text strong {
    display: block;
    font-size: 12px;
    color: #888888; /* Başlıklar için orta gri (Pick-up, Date vb.) */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.summary-text span {
    font-weight: 600;
    color: #111111; /* Kullanıcının seçtiği veriler için tam siyah */
}

/* Mobilde alt alta düzgün dursun */
@media (max-width: 768px) {
    .vip-search-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ========================================================
   7. HEADER DİL SEÇİCİ (main-header__lang)
======================================================== */
.main-header__lang {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.main-header__lang__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--hyperfly-heading-font, "Inter", sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--hyperfly-white, #fff);
    cursor: pointer;
    transition: color 0.3s ease;
}
.main-header__lang__toggle:hover,
.main-header__lang__toggle:focus {
    color: var(--hyperfly-base, #E11617);
}
.main-header__lang__toggle i.fa-globe {
    font-size: 18px;
}
.main-header__lang__toggle i.fa-angle-down {
    font-size: 11px;
}
.main-header__lang__menu {
    min-width: 130px;
    padding: 6px 0;
    margin-top: 12px !important;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(3, 13, 23, 0.15);
}
.main-header__lang__menu .dropdown-item {
    font-family: var(--hyperfly-heading-font, "Inter", sans-serif);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    color: var(--hyperfly-black, #030D17);
}
.main-header__lang__menu .dropdown-item:hover,
.main-header__lang__menu .dropdown-item:focus {
    background-color: rgba(225, 22, 23, 0.08);
    color: var(--hyperfly-base, #E11617);
}
.main-header__lang__menu .dropdown-item.active {
    background-color: var(--hyperfly-base, #E11617);
    color: var(--hyperfly-white, #fff);
}
@media (max-width: 1199px) {
    .main-header__lang {
        margin-left: 16px;
    }
}
@media (max-width: 767px) {
    .main-header__lang {
        margin-left: 12px;
    }
}

/* ========================================================
   8. ARAÇ FİYAT ROZETİ (araclarimiz.php)
======================================================== */
.vip-vehicle-price {
    display: inline-block;
    margin: 6px 0 4px;
    padding: 4px 14px;
    background: rgba(225, 22, 23, 0.1);
    color: #E11617;
    font-weight: 700;
    font-size: 16px;
    border-radius: 20px;
}

/* ========================================================
   9. BLOG DETAY SAYFASI (blog-detay.php)
======================================================== */
.blog-details {
    padding: 80px 0;
}
.blog-details__content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--hyperfly-text, #6f7172);
}
.blog-details__content p {
    margin-bottom: 22px;
}
.blog-details__content h3 {
    margin: 36px 0 16px;
    font-size: 24px;
    font-weight: 700;
    color: var(--hyperfly-black, #030D17);
}
.blog-details__content ul,
.blog-details__content ol {
    margin: 0 0 22px 20px;
    padding: 0;
}
.blog-details__content ul li,
.blog-details__content ol li {
    margin-bottom: 10px;
    line-height: 1.8;
}
.blog-details__content a {
    color: var(--hyperfly-base, #E11617);
    text-decoration: underline;
}
.blog-details__image img {
    display: block;
    max-height: 480px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .blog-details {
        padding: 50px 0;
    }
    .blog-details__content h3 {
        font-size: 20px;
    }
}