/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    /* font-family: inherit; */
}

.cookie-consent-banner.visible {
    bottom: 0;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.4;
    max-width: 800px;
}

.cookie-consent-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-btn:hover {
    background-color: #ccc;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        padding: 20px 15px;
        bottom: -200px; /* Increase hidden offset for taller mobile banner */
        gap: 15px;
        text-align: center;
    }

    .cookie-consent-banner.visible {
        bottom: 0;
    }

    .cookie-consent-text {
        max-width: 100%;
        font-size: 13px; /* Slightly smaller text on mobile */
    }

    .cookie-consent-btn {
        width: 100%; /* Full width button for easier tapping */
        max-width: 300px; /* But not too wide on tablets */
        padding: 12px 20px;
    }
}
