/* ===================================
   DORUK PREMIUM CUSTOM DROPDOWNS
   =================================== */

/* Hide native select visually but keep for accessibility/functionality */
.doruk-custom-select-hidden {
    display: none !important;
}

.doruk-select-wrapper {
    position: relative;
    width: 100%;
}

/* Trigger Button */
.doruk-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    background: #FFFFFF;
    border: 1px solid rgba(11, 44, 84, 0.1);
    border-radius: 12px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.doruk-select-trigger:hover {
    border-color: #FF6B35;
    background: #FAFAFA;
}

.doruk-select-trigger.active {
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.05);
}

.doruk-select-trigger i {
    font-size: 12px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #FF6B35;
}

.doruk-select-trigger.active i {
    transform: rotate(180deg);
}

/* Options List Overlay */
.doruk-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(11, 44, 84, 0.08);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 1100;
    max-height: 350px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.doruk-select-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom Scrollbar */
.doruk-select-options::-webkit-scrollbar {
    width: 6px;
}

.doruk-select-options::-webkit-scrollbar-track {
    background: transparent;
}

.doruk-select-options::-webkit-scrollbar-thumb {
    background: rgba(11, 44, 84, 0.1);
    border-radius: 10px;
}

.doruk-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 44, 84, 0.2);
}

/* Single Option */
.doruk-option {
    padding: 12px 24px;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.doruk-option:last-child {
    border-bottom: none;
}

.doruk-option:hover {
    background: rgba(255, 107, 53, 0.05);
    color: #FF6B35;
    padding-left: 30px;
}

.doruk-option.selected {
    background: #0B2C54;
    color: #FFFFFF;
    font-weight: 700;
}

.doruk-option.selected::after {
    content: '\F633'; /* bi-check-lg */
    font-family: 'bootstrap-icons';
    font-size: 16px;
}

/* Header/Label Style */
.doruk-select-label {
    padding: 12px 24px 8px;
    font-size: 11px;
    font-weight: 800;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .doruk-select-trigger {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .doruk-select-options {
        max-height: 300px;
        border-radius: 12px;
    }
    
    .doruk-option {
        padding: 14px 20px;
        font-size: 14px;
    }
}
