/* cookie-banner.css */
:root {
    --cookie-bg: rgba(15, 23, 42, 0.85); /* Slate 900 with transparency */
    --cookie-primary: #00c45c;
    --cookie-text: #ffffff;
    --cookie-border: rgba(255, 255, 255, 0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--cookie-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--cookie-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 9999;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-content h4 {
    color: var(--cookie-text);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-accept-cookies {
    background: var(--cookie-primary);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-accept-cookies:hover {
    background: #00a54d;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 196, 92, 0.3);
}

.btn-reject-cookies {
    background: transparent;
    color: #fff;
    border: 1px solid var(--cookie-border);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject-cookies:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}
