.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
    color: #ffffff;
    z-index: 9999;
    display: none;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    padding: 2rem 1rem;
    font-family: var(--font-family, 'Outfit', sans-serif);
}
.cookie-content {
    max-width: 800px;
    width: 100%;
}
.cookie-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #c19a5b; /* primary color seen in site */
    font-size: 1.5rem;
}
.cookie-content p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.cookie-options {
    margin: 1.5rem 0;
    display: flex;
    gap: 2rem;
}
.cookie-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}
.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-actions button {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
}
.cookie-actions .btn-primary {
    background-color: #c19a5b;
    color: #fff;
}
.cookie-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-actions button:hover {
    opacity: 0.8;
}
@media (max-width: 600px) {
    .cookie-options {
        flex-direction: column;
        gap: 0.8rem;
    }
    .cookie-actions {
        flex-direction: column;
    }
}
