/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
    background: rgba(28, 25, 23, 0.95); /* stone-900 with opacity */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2); /* gold with low opacity */
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-consent-title {
    color: #C5A059; /* gold */
    font-family: serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.cookie-consent-text {
    color: #d6d3d1; /* stone-300 */
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cookie-btn-accept {
    background-color: #C5A059;
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    background-color: #D4AF37;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #a8a29e; /* stone-400 */
    border: 1px solid #44403c; /* stone-700 */
}

.cookie-btn-decline:hover {
    color: white;
    border-color: #a8a29e;
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1.25rem;
    }
}
