/* ── Horario Semanal — Frontend ── */

.hs-horario-widget {
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.hs-widget-header {
    text-align: center;
    margin-bottom: 18px;
}
.hs-location-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px;
    line-height: 1.2;
}
.hs-semana-label {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* ── Tarjeta por día ── */
.hs-dia-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
    box-sizing: border-box;
}
.hs-dia-card:last-child { border-bottom: none; }

.hs-dia-nombre {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    flex-shrink: 0;
}
.hs-dia-nombre span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}
.hs-dia-card--cerrado .hs-dia-nombre span:last-child {
    font-weight: 400;
    color: #aaa;
}

.hs-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1D9E75;
    flex-shrink: 0;
}
.hs-dot--cerrado { background: #ddd; }

.hs-dia-turnos {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex: 1;
}

.hs-turno {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.hs-turno-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hs-pill {
    display: inline-block;
    background: #f4f4f2;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 13px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    color: #1a1a1a;
    white-space: nowrap;
    line-height: 1.2;
}

.hs-cerrado-label {
    font-size: 13px;
    color: #ccc;
    font-weight: 500;
}

.hs-no-horario { color: #888; font-size: 14px; }

/* ── Desktop ≥ 600px ── */
@media (min-width: 600px) {
    .hs-horario-widget { max-width: 680px; }

    .hs-dia-card {
        padding: 13px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    .hs-dia-card:first-of-type {
        border-top: 1px solid #e8e8e8;
        border-radius: 12px 12px 0 0;
    }
    .hs-dia-card:last-of-type {
        border-radius: 0 0 12px 12px;
        border-bottom: 1px solid #e8e8e8;
    }

    .hs-dia-turnos {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }
    .hs-turno { gap: 6px; }
    .hs-dia-nombre { min-width: 130px; }
    .hs-pill { font-size: 13px; padding: 4px 14px; }
}

@media (min-width: 480px) {
    .hs-location-title { font-size: 24px; }
}
