/* Working Hours Widget — Front-end Styles
   These are structural/layout defaults only.
   All visual tokens are set via Elementor controls.
------------------------------------------------------- */

.whw-wrap {
    background-color: #f0ece5; /* fallback; overridden by Elementor BG control */
    padding: 40px 50px;
    box-sizing: border-box;
}

/* Title */
.whw-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a6e5f;
    margin: 0 0 30px;
    padding: 0;
}

/* Rows */
.whw-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: background-color 0.2s;
}

.whw-row:last-child {
    margin-bottom: 0;
}

/* Day label wrapper (holds optional dot + label) */
.whw-day-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Day label */
.whw-day {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6e5f;
}

/* Time / Closed */
.whw-time {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #7a6e5f;
    text-align: right;
}

/* Closed row */
.whw-row.whw-closed .whw-time {
    color: #b0a898;
}

/* Today dot */
.whw-today-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #7a6e5f;
    flex-shrink: 0;
}

/* Today row */
.whw-row.whw-today .whw-day,
.whw-row.whw-today .whw-time {
    color: #3d3328;
    font-weight: 600;
}
