/* assets/css/cookies.css */

.ezy-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 999999;
    font-family: 'Inter', sans-serif;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.ezy-cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.ezy-cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ezy-cookie-icon {
    font-size: 24px;
    margin-right: 12px;
    color: #ff9800;
}

.ezy-cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.ezy-cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 20px;
}

.ezy-cookie-text a {
    color: #0b2239;
    text-decoration: underline;
    font-weight: 600;
}

.ezy-cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ezy-cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.ezy-cookie-accept {
    background-color: #0b2239;
    color: #ffffff;
}

.ezy-cookie-accept:hover {
    background-color: #1a3d61;
}

.ezy-cookie-reject {
    background-color: #f1f1f1;
    color: #555555;
}

.ezy-cookie-reject:hover {
    background-color: #e2e2e2;
}

@media (max-width: 480px) {
    .ezy-cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: 100%;
    }
}
