/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(26, 35, 50, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-text p {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

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

.cookie-btn.accept:hover {
    background: #e85543;
}

.cookie-btn.reject {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #64748b;
}

.cookie-btn.reject:hover {
    background: #2a3f54;
    border-color: #94a3b8;
}

.cookie-btn.customize {
    background: #2a3f54;
    color: white;
    border: 1px solid #64748b;
}

.cookie-btn.customize:hover {
    background: #3a4f64;
    border-color: #94a3b8;
}

.cookie-btn.secondary {
    background: #64748b;
    color: white;
}

.cookie-btn.secondary:hover {
    background: #475569;
}

.cookie-link {
    color: #ff6b5a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #e85543;
    text-decoration: underline;
}

/* Cookie Customization Panel */
.cookie-customization {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid #2a3f54;
}

.cookie-customization h4 {
    color: white;
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-option input[type="checkbox"] {
    margin: 4px 0 0 0;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-option-text strong {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-option-text small {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        width: 100%;
        gap: 12px;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 20px 16px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}