.cliente-clock-status {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    padding: 14px 16px;
    margin: 18px 0 22px;
}

.cliente-clock-main {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cliente-clock-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: #ecfdf5;
    font-size: 22px;
}

.cliente-clock-main strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: .03em;
}

.cliente-clock-main small,
.cliente-store-status small {
    display: block;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 600;
}

.cliente-store-status {
    min-width: 0;
}

.cliente-store-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 900;
}

.cliente-store-badge.loading {
    background: #f3f4f6;
    color: #374151;
}

.cliente-store-badge.open {
    background: #dcfce7;
    color: #166534;
}

.cliente-store-badge.closed {
    background: #fee2e2;
    color: #991b1b;
}

.cliente-clock-refresh {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 800;
}

.cliente-clock-refresh:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 820px) {
    .cliente-clock-status {
        grid-template-columns: 1fr;
    }

    .cliente-clock-refresh {
        width: 100%;
    }
}
