#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .cookie-banner-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-banner-text {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #F55529;
    /* Match site primary color if known, or generic link color */
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: #F55529;
    /* Primary color based on logo usually, or standard dark */
    color: #fff;
    border: 1px solid #F55529;
}

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

.cookie-btn-refuse {
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.cookie-btn-refuse:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

.hidden {
    display: none !important;
}