/* DOGRUOKUL PREMIUM FILTER CSS */

.dosf {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

/* Panel Genel Yapısı */
.dosf__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Etiketler */
.dosf__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

/* Girdi ve Seçim Kutuları */
.dosf__field input[type="search"],
.dosf__field select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #f3f4f6;
    border-radius: 20px;
    font-size: 15px;
    color: #f97316; /* Turuncu Yazı */
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    box-sizing: border-box;
}

/* Select için Özel Ok (Dropdown Arrow) */
.dosf__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Hover ve Focus Durumları */
.dosf__field input[type="search"]:focus,
.dosf__field select:focus {
    border-color: #f97316;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.dosf__field select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Buton ve Linkler */
.dosf__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* Turuncu Filtrele Butonu */
.dosf__submit {
    background-color: #ffffff;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 14px 20px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.dosf__submit:hover {
    background-color: #f97316;
    color: #ffffff;
}

/* Filtreleri Temizle Linki */
.dosf__clear {
    display: block;
    text-align: center;
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dosf__clear:hover {
    color: #f97316;
}

/* Alt Özet Kısmı (Sonuç Mesajları) */
.dosf__summary {
    margin-top: 25px;
    text-align: center;
}

.dosf__count {
    display: inline-block;
    background: #fef08a;
    color: #854d0e;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}


/* SONUÇ BULUNAMADI EKRANI VE BUTONU */
.dosf__empty {
    background: #ffffff;
    color: #f97316;
    padding: 25px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #fed7aa;
    text-align: center;
}

.dosf__clear--button {
    display: inline-block;
    margin-top: 15px;
    background: #ffffff !important;
    color: #f97316 !important;
    border: 2px solid #f97316 !important;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dosf__clear--button:hover {
    background: #f97316 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

/* Mobil Toggle (Varsa gizle, doğrudan formu göster) */
.dosf__mobile-toggle {
    display: none;
}
/* Mobil Optimizasyonu */
@media (max-width: 768px) {
    .dosf__panel {
        padding: 15px !important;
    }
    .dosf__form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .dosf__field select, 
    .dosf__field input {
        width: 100% !important;
        height: 50px !important;
        font-size: 16px !important; /* iPhone'da otomatik zoom'u engeller */
        padding: 10px !important;
        box-sizing: border-box;
    }
    .dosf__actions {
        margin-top: 10px;
    }
    .dosf__submit, 
    .dosf__clear {
        width: 100% !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 10px;
    }
}