#ssjbq-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #063866;
    color: #F8F5EE;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-family: 'Libre Baskerville', serif;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #D99B18;
}
.cookie-text p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-text a {
    color: #D99B18;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.cookie-btn.accept {
    background: #D99B18;
    color: #252525;
}
.cookie-btn.accept:hover {
    background: #c08a15;
}
.cookie-btn.reject {
    background: transparent;
    color: #F8F5EE;
    border: 1px solid #F8F5EE;
}
.cookie-btn.reject:hover {
    background: rgba(255,255,255,0.1);
}
.cookie-btn.settings {
    background: transparent;
    color: #D99B18;
    border: 1px solid #D99B18;
}
.cookie-btn.settings:hover {
    background: rgba(217,155,24,0.1);
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
}
