/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 20px;
    animation: slideUp 0.5s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner.hidden {
    display: none !important;
}

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

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-icon {
    flex-shrink: 0;
}

.cookie-consent-icon .material-icons {
    font-size: 40px;
    color: #ffffff;
    opacity: 0.95;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.cookie-consent-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-consent-learn-more {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.cookie-consent-learn-more:hover {
    opacity: 0.8;
    color: #ffffff;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-consent-actions .btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-consent-actions .btn-accept {
    background-color: #ffffff;
    color: var(--bs-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-consent-actions .btn-accept:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cookie-consent-actions .btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cookie-consent-actions .btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.cookie-consent-actions .btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.cookie-consent-actions .btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-consent-content {
        min-width: auto;
    }
    
    .cookie-consent-icon .material-icons {
        font-size: 32px;
    }
    
    .cookie-consent-title {
        font-size: 16px;
    }
    
    .cookie-consent-description {
        font-size: 13px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent-icon {
        align-self: center;
    }
    
    .cookie-consent-text {
        text-align: center;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cookie-consent-banner {
        background: #000000;
        border-top: 3px solid #ffffff;
    }
    
    .cookie-consent-actions .btn-accept {
        background-color: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }
    
    .cookie-consent-actions .btn-reject {
        border-color: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-banner {
        animation: none;
    }
    
    .cookie-consent-actions .btn {
        transition: none;
    }
    
    .cookie-consent-actions .btn:hover {
        transform: none;
    }
}

/* Print Styles - Hide Banner */
@media print {
    .cookie-consent-banner {
        display: none !important;
    }
}

