/* ══════════════════════════════════════════════════════════
   FINANCIAL OPTIONS WIDGET SHORTCODE
   ══════════════════════════════════════════════════════════ */

.fin-options-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #D4E8FF;
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
}

.fin-options-title {
    color: #2A4397;
    font-family: Inter, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.24;
    text-align: center;
    margin: 0 0 20px;
}

/* ── Payment / Financing Cards ────────────────────────── */
.fin-options-cards {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.fin-options-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 15px 50px;
    box-sizing: border-box;
}

.fin-options-card--payment {
    background: #F1EDE3;
}

.fin-options-card--financing {
    background: #F8F8F5;
}

.fin-options-card h3 {
    color: #2A4397;
    font-family: Inter, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.24;
    text-align: center;
    margin: 0;
}

.fin-options-card p {
    color: #2A4397;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.46;
    text-align: center;
    max-width: 377px;
    margin: 0;
}

.fin-options-card-logos {
    display: flex;
    align-items: center;
    gap: 27px;
}

.fin-options-card-logos img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
}

/* ── Accepted Insurances ─────────────────────────────── */
.fin-options-insurance-title {
    color: #2A4397;
    font-family: Inter, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.24;
    text-align: center;
    margin: 30px 0 15px;
}

.fin-options-insurance-desc {
    color: #161A1B;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.46;
    text-align: center;
    max-width: 700px;
    margin: 0 0 25px;
}

.fin-options-insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 175px);
    gap: 15px;
    justify-content: center;
    padding: 0 20px;
}

.fin-options-insurance-grid img {
    width: 175px;
    height: 55px;
    object-fit: contain;
}

/* ── Oral Care / No Insurance Section ────────────────── */
.fin-options-oral-care {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 15px 50px;
    background: #FFF;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

.fin-options-oral-care-content {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    justify-content: center;
}

.fin-options-oral-care-icon {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: #EEF0FF;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fin-options-oral-care-icon img {
    width: 148px;
    height: 148px;
    object-fit: contain;
}

.fin-options-oral-care-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fin-options-oral-care-text h3 {
    color: #002969;
    font-family: Inter, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.24;
    margin: 0;
}

.fin-options-oral-care-text p {
    color: #002969;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.46;
    margin: 0;
}

.fin-options-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 44px;
    background: #EF5904;
    border-radius: 31px;
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 29px;
}

.fin-options-join-btn:hover {
    opacity: 0.9;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .fin-options-cards {
        flex-direction: column;
        padding: 0;
    }

    .fin-options-insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fin-options-insurance-grid img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .fin-options-title,
    .fin-options-insurance-title {
        font-size: 28px;
    }

    .fin-options-card {
        padding: 15px 20px;
    }

    .fin-options-card-logos img {
        width: 70px;
        height: 70px;
    }

    .fin-options-insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fin-options-oral-care-content {
        flex-direction: column;
        text-align: center;
    }

    .fin-options-oral-care {
        padding: 15px 20px;
    }
}
