/* Cookie Consent Banner Styles */
/* Minimalist, high-end design inspired by luxury interior design websites */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F9F9F9;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
    border-top: 1px solid #E5E5E5;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-text {
    font-size: 0.875rem;
    color: #2C2C2C;
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 600px;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0; /* Sharp 90-degree edges */
}

.cookie-consent-btn-accept {
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: 1px solid #2C2C2C;
}

.cookie-consent-btn-accept:hover {
    background-color: #1A1A1A;
    border-color: #1A1A1A;
}

.cookie-consent-btn-decline {
    background-color: transparent;
    color: #2C2C2C;
    border: 1px solid #2C2C2C;
}

.cookie-consent-btn-decline:hover {
    background-color: rgba(44, 44, 44, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        text-align: center;
    }

    .cookie-consent-text {
        font-size: 0.8125rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
}
