/* 
 * Cookie Consent Banner - Professional Design
 * To'q ko'k rang sxemasi
 */

#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 3px solid #011247;
    box-shadow: 0 -4px 20px rgba(1, 18, 71, 0.15);
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

#cookie-consent-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    color: #011247;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-text h4 i {
    font-size: 24px;
    color: #011247;
}

.cookie-consent-text p {
    color: #4b5563;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #011247;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #1e40af;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #011247;
    color: white;
}

.cookie-btn-accept:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 18, 71, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: #011247;
    border: 2px solid #011247;
}

.cookie-btn-reject:hover {
    background: rgba(1, 18, 71, 0.05);
    transform: translateY(-2px);
}

.cookie-btn-details {
    background: transparent;
    color: #4b5563;
    border: 2px solid #d1d5db;
}

.cookie-btn-details:hover {
    background: #f3f4f6;
    border-color: #011247;
    color: #011247;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-consent-text h4 {
        font-size: 16px;
    }
    
    .cookie-consent-text p {
        font-size: 13px;
    }
}

