body.openten-no-scroll {
    overflow: hidden;
    height: 100vh;
}

#openten-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none; /* 🔥 oculto por defecto */
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.openten-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.25s ease-in-out;
}

#openten-close {
    padding: 0;
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: 2px solid #000;
    font-size: 22px;
    color: #000;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 26px;
}

.openten-text {
    margin: 10px 0px;
    font-weight: normal;
}

.openten-time {
    padding: 0px;
	margin: 0px 0px;
    font-weight: bold;
}

.openten-btn {
    margin-top: 15px;
    padding: 10px 16px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.openten-btn:hover {
    opacity: 0.85;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===============================
   Shortcode Horarios
================================= */

.openten-schedule-wrapper {
    margin: 5px 0;
}

.openten-row {
    display: flex;
    justify-content: space-between;
    padding: 1px 0;
}

.openten-day {
    font-weight: 600;
}

.openten-hours {
    color: #666;
}

.openten-today {
    font-weight: 700;
}

.openten-closed-label {
    color: #d63638;
    font-weight: 600;
}