/* Cookie Notice Styles for GDPR Compliance */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color, #48bb78);
    animation: slideUp 0.3s ease-out;
}

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

.cookie-notice p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    min-width: 250px;
}

.cookie-notice p i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.cookie-notice-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-notice .btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.cookie-notice .btn-primary {
    background: var(--primary-color, #48bb78);
    color: white;
}

.cookie-notice .btn-primary:hover {
    background: var(--primary-dark, #38a169);
    transform: translateY(-1px);
}

.cookie-notice .btn-secondary {
    background: transparent;
    color: #cbd5e0;
    border: 1px solid #4a5568;
}

.cookie-notice .btn-secondary:hover {
    background: #4a5568;
    color: white;
    transform: translateY(-1px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice p {
        min-width: auto;
        margin-bottom: 0.5rem;
    }
    
    .cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-notice .btn {
        flex: 1;
        justify-content: center;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-notice {
        background: black;
        border-top-width: 3px;
    }
    
    .cookie-notice .btn-primary {
        border: 2px solid white;
    }
    
    .cookie-notice .btn-secondary {
        border: 2px solid white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cookie-notice {
        animation: none;
    }
    
    .cookie-notice .btn {
        transition: none;
    }
    
    .cookie-notice .btn:hover {
        transform: none;
    }
}