#lp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

#lp-popup-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-family: sans-serif;
}

#lp-title {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

#lp-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.lp-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

#lp-btn-it {
    background-color: #C2CCC1;
    color: white;
}

#lp-btn-it:hover {
    background-color: #615D5F;
}

#lp-btn-en {
    background-color: #23282d;
    color: white;
}

.lp-button:hover {
    opacity: 0.9;
}

.lp-cookie-consent {
    margin-top: 15px;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.lp-cookie-consent input {
    margin: 0;
}
