/* ============================================================
   Format Selector Widget — Beps PuroOmega Widgets
   ============================================================ */

.beps-fmtsel-wrap {
    width: 100%;
}

.beps-fmtsel-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Tarjeta ─────────────────────────────────────────────────── */
.beps-fmtsel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 178px;
    height: 102px;
    flex-shrink: 0;
    padding: 12px 16px;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
    background: #ffffff;
    gap: 2px;
    user-select: none;
    box-sizing: border-box;
}

.beps-fmtsel-card:hover {
    border-color: #130F32;
}

.beps-fmtsel-card.is-selected {
    border-color: #141436;
    border-width: calc(1px + 1px);
    background: #F8F8FA;
}

/* Ocultar radio nativo */
.beps-fmtsel-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* ── Nombre del formato ──────────────────────────────────────── */
.beps-fmtsel-name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #141436;
    line-height: 1.2;
}

/* ── Subtexto (dosificación + precio/día) ────────────────────── */
.beps-fmtsel-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.beps-fmtsel-dosage {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.4;
}

.beps-fmtsel-price-day {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.4;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* ≤768px: 155px fijo hasta que la pantalla sea más estrecha que ~390px,
   luego escala fluidamente con 40vw hasta un mínimo de 100px */
@media (max-width: 768px) {
    .beps-fmtsel-card {
        width: clamp(100px, 40vw, 155px);
        min-width: 0;
        flex-shrink: 1;
        height: auto;
        min-height: 88px;
    }
}

@media (max-width: 480px) {
    .beps-fmtsel-card {
        padding: 10px 8px;
    }

    .beps-fmtsel-name {
        font-size: 14px;
    }

    .beps-fmtsel-dosage,
    .beps-fmtsel-price-day {
        font-size: 12px;
    }
}
