/* =========================
   Pregnancy week progress & fruit size
========================= */

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

.fruit-size__emoji {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
}

.fruit-size__text {
    font-size: 14px;
    font-weight: 800;
    color: #9d174d;
}

.week-progress {
    margin-top: 16px;
}

.week-progress__bar {
    height: 12px;
    border-radius: 999px;
    background: #f3f4f6;
    overflow: hidden;
}

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

.week-progress__label {
    margin-top: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}