/**
 * Cookie Banner Styles
 */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    color: #616e74;
    font-size: 0.95em;
    line-height: 1.5em;
}

.cookie-banner-text p {
    margin: 0 0 10px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.cookie-banner-text p strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.cookie-banner-text a {
    color: #f2cd03;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #a68d02;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.cookie-btn-accept {
    background: #f2cd03;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #a68d02;
}

.cookie-btn-decline {
    background: #616e74;
    color: #fff;
}

.cookie-btn-decline:hover {
    background: #4a565b;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    #cookie-banner {
        padding: 15px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-text {
        min-width: 100%;
        font-size: 0.9em;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}
