/* =========================
   Love calculator result
========================= */

.love-result {
    margin-top: 20px;
    text-align: center;
    padding: 28px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fdf2f8, #fce7f3);
    border: 1px solid rgba(219, 39, 119, .18);
}

.love-percent {
    font-size: 48px;
    font-weight: 900;
    color: #be185d;
    line-height: 1;
    margin-bottom: 14px;
}

.love-bar {
    height: 16px;
    border-radius: 999px;
    background: #fce7f3;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.love-bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f472b6, #db2777);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.love-comment {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #9d174d;
}

@media (max-width: 480px) {
    .love-percent {
        font-size: 38px;
    }
}