/* Modern Floating Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px; /* Reduced max-width for cleaner look */
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f0f0f0;
    padding: 20px 24px;
    z-index: 99999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Controlled by JS */
    font-family: "Jost", "Open Sans", sans-serif;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translate(-50%, 40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

#cookie-banner .cookie-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Cookie Icon/Emoji */
#cookie-banner p::before {
    content: "🍪";
    font-size: 1.4rem;
    margin-right: 8px;
    vertical-align: sub;
}

#cookie-banner a {
    color: #47b2e4;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

#cookie-banner a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

#cookie-banner .cookie-buttons {
    display: flex;
    width: 100%;
    gap: 12px;
    justify-content: flex-end; /* Buttons to the right */
}

#cookie-banner .btn-cookie {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

/* Accept Button - Primary Brand Color */
#cookie-banner .btn-accept {
    background: #47b2e4;
    border: 1px solid #47b2e4;
    color: #fff;
}

#cookie-banner .btn-accept:hover {
    background: #3da6d6;
    border-color: #3da6d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 178, 228, 0.3);
}

/* Reject Button - Minimalist */
#cookie-banner .btn-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ccc;
}

#cookie-banner .btn-reject:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    #cookie-banner {
        width: 94%;
        bottom: 20px;
        padding: 20px;
    }

    #cookie-banner .cookie-buttons {
        flex-direction: column-reverse; /* Accept button on top for easier thumb reach */
        gap: 10px;
    }

    #cookie-banner .btn-cookie {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

