/* Cookie Consent Banner - Minimal Design */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.cookie-consent__description {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.cookie-consent__btn--accept {
    background: #2563eb;
    color: white;
}

.cookie-consent__btn--accept:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cookie-consent__btn--decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem 0.75rem;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent__btn {
        flex: 1;
        max-width: 120px;
    }
    
    .cookie-consent__title {
        font-size: 1rem;
    }
    
    .cookie-consent__description {
        font-size: 0.85rem;
    }
}

/* Accessibility improvements */
.cookie-consent__btn:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* Animation for smooth appearance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent.animate-in {
    animation: slideUp 0.3s ease-out;
}
