/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0F172A; /* Slate 900 to match --bg-dark */
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid #8B6B10; /* Sophisticated gold to match --brand-gold */
}

.cookie-banner-content {
    max-width: 1000px; /* To match --container-width */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-banner .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}
