/**
 * Cookie Consent Banner Styles - Valentina Estetics
 * LTR (Left-to-Right) version
 * Color palette: Reddish-brown (#CD4B3B) theme
 */

.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #CD4B3B;
    color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffff;
    display: none;
}

.cookie-consent-message {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.cookie-consent-message a {
    color: #F8D0CC;
    text-decoration: underline;
}

.cookie-consent-message a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-consent-accept {
    background-color: #B04033;
    color: #ffffff;
}

.cookie-consent-accept:hover {
    background-color: #9a3529;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-reject {
    background-color: #666666;
    color: #ffffff;
}

.cookie-consent-reject:hover {
    background-color: #555555;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 0;
    }

    .cookie-consent-title {
        font-size: 16px;
    }

    .cookie-consent-message {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 15px 0;
    }

    .cookie-consent-container {
        padding: 0 15px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}
