/**
 * Cookie Banner Styles - GDPR Compliant
 * VascheLavaggio.com
 */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner__text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.cookie-banner__text strong {
    font-size: 16px;
    color: #0066cc;
    display: block;
    margin-bottom: 8px;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: #0066cc;
    color: #ffffff;
}

.cookie-banner__btn--accept:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cookie-banner__btn--reject {
    background: #f1f3f5;
    color: #495057;
}

.cookie-banner__btn--reject:hover {
    background: #e9ecef;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .cookie-banner__content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .cookie-banner__text {
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .cookie-banner__content {
        padding: 20px;
    }

    .cookie-banner__text {
        font-size: 13px;
    }

    .cookie-banner__btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
